face names

Forums: 

Hi all,

I'm new in journaling.
I'm looking for a journal example for editting the face/edge names.

This if for that we are able to set our legacy data to named faces/edges.
Making it better possible to replace components and still get the Assembl contrains right

So i hope that any one can help me with this.
i have created the Dialog that i want to use.

'==============================================================================
' WARNING!! This file is overwritten by the Block UI Styler while generating
' the automation code. Any modifications to this file will be lost after
' generating the code again.
'
' Filename: C:\Users\Ruud van den Brand\Desktop\TFS\Dialog\Face_edge_Names.vb
'
' This file was generated by the NX Block UI Styler
' Created by: Ruud van den Brand
' Version: NX 11
' Date: 03-18-2019 (Format: mm-dd-yyyy)
' Time: 13:37 (Format: hh-mm)
'
'==============================================================================

'==============================================================================
' Purpose: This TEMPLATE file contains VB.NET source to guide you in the
' construction of your Block application dialog. The generation of your
' dialog file (.dlx extension) is the first step towards dialog construction
' within NX. You must now create a NX Open application that
' utilizes this file (.dlx).
'
' The information in this file provides you with the following:
'
' 1. Help on how to load and display your Block UI Styler dialog in NX
' using APIs provided in NXOpen.BlockStyler namespace
' 2. The empty callback methods (stubs) associated with your dialog items
' have also been placed in this file. These empty methods have been
' created simply to start you along with your coding requirements.
' The method name, argument list and possible return values have already
' been provided for you.
'==============================================================================

'------------------------------------------------------------------------------
'These imports are needed for the following template code
'------------------------------------------------------------------------------
Option Strict Off
Imports System
Imports NXOpen
Imports NXOpen.BlockStyler

'------------------------------------------------------------------------------
'Represents Block Styler application class
'------------------------------------------------------------------------------
Public Class Face_edge_Names
'class members
Private Shared theSession As Session
Private Shared theUI As UI
Private theDlxFileName As String
Private theDialog As NXOpen.BlockStyler.BlockDialog
Private group3 As NXOpen.BlockStyler.Group' Block type: Group
Private AlignFace As NXOpen.BlockStyler.FaceCollector' Block type: Face Collector
Private group2 As NXOpen.BlockStyler.Group' Block type: Group
Private TouchFace As NXOpen.BlockStyler.FaceCollector' Block type: Face Collector
Private group1 As NXOpen.BlockStyler.Group' Block type: Group
Private InnerEdge As NXOpen.BlockStyler.CurveCollector' Block type: Curve Collector
Private group As NXOpen.BlockStyler.Group' Block type: Group
Private OuterEdge As NXOpen.BlockStyler.CurveCollector' Block type: Curve Collector

#Region "Block Styler Dialog Designer generator code"
'------------------------------------------------------------------------------
'Constructor for NX Styler class
'------------------------------------------------------------------------------
Public Sub New()
Try

theSession = Session.GetSession()
theUI = UI.GetUI()
theDlxFileName = "Face_edge_Names.dlx"
theDialog = theUI.CreateDialog(theDlxFileName)
theDialog.AddApplyHandler(AddressOf apply_cb)
theDialog.AddOkHandler(AddressOf ok_cb)
theDialog.AddUpdateHandler(AddressOf update_cb)
theDialog.AddInitializeHandler(AddressOf initialize_cb)
theDialog.AddDialogShownHandler(AddressOf dialogShown_cb)

Catch ex As Exception

'---- Enter your exception handling code here -----
Throw ex
End Try
End Sub
#End Region

'------------------------------- DIALOG LAUNCHING ---------------------------------
'
' Before invoking this application one needs to open any part/empty part in NX
' because of the behavior of the blocks.
'
' Make sure the dlx file is in one of the following locations:
' 1.) From where NX session is launched
' 2.) $UGII_USER_DIR/application
' 3.) For released applications, using UGII_CUSTOM_DIRECTORY_FILE is highly
' recommended. This variable is set to a full directory path to a file
' containing a list of root directories for all custom applications.
' e.g., UGII_CUSTOM_DIRECTORY_FILE=$UGII_BASE_DIR\ugii\menus\custom_dirs.dat
'
' You can create the dialog using one of the following way:
'
' 1. Journal Replay
'
' 1) Replay this file through Tool->Journal->Play Menu.
'
' 2. USER EXIT
'
' 1) Create the Shared Library -- Refer "Block UI Styler programmer's guide"
' 2) Invoke the Shared Library through File->Execute->NX Open menu.
'
'------------------------------------------------------------------------------
Public Shared Sub Main()
Dim theFace_edge_Names As Face_edge_Names = Nothing
Try

theFace_edge_Names = New Face_edge_Names()
' The following method shows the dialog immediately
theFace_edge_Names.Show()

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
Finally
If theFace_edge_Names IsNot Nothing Then
theFace_edge_Names.Dispose()
theFace_edge_Names = Nothing
End If
End Try
End Sub
'------------------------------------------------------------------------------
' This method specifies how a shared image is unloaded from memory
' within NX. This method gives you the capability to unload an
' internal NX Open application or user exit from NX. Specify any
' one of the three constants as a return value to determine the type
' of unload to perform:
'
'
' Immediately : unload the library as soon as the automation program has completed
' Explicitly : unload the library from the "Unload Shared Image" dialog
' AtTermination : unload the library when the NX session terminates
'
'
' NOTE: A program which associates NX Open applications with the menubar
' MUST NOT use this option since it will UNLOAD your NX Open application image
' from the menubar.
'------------------------------------------------------------------------------
Public Shared Function GetUnloadOption(ByVal arg As String) As Integer
'Return CType(Session.LibraryUnloadOption.Explicitly, Integer)
Return CType(Session.LibraryUnloadOption.Immediately, Integer)
' Return CType(Session.LibraryUnloadOption.AtTermination, Integer)
End Function
'------------------------------------------------------------------------------
' Following method cleanup any housekeeping chores that may be needed.
' This method is automatically called by NX.
'------------------------------------------------------------------------------
Public Shared Sub UnloadLibrary(ByVal arg As String)
Try

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Sub

'------------------------------------------------------------------------------
'This method shows the dialog on the screen
'------------------------------------------------------------------------------
Public Sub Show()
Try

theDialog.Show

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Sub

'------------------------------------------------------------------------------
'Method Name: Dispose
'------------------------------------------------------------------------------
Public Sub Dispose()
If theDialog IsNot Nothing Then
theDialog.Dispose()
theDialog = Nothing
End If
End Sub

'------------------------------------------------------------------------------
'---------------------Block UI Styler Callback Functions--------------------------
'------------------------------------------------------------------------------

'------------------------------------------------------------------------------
'Callback Name: initialize_cb
'------------------------------------------------------------------------------
Public Sub initialize_cb()
Try

group3 = CType(theDialog.TopBlock.FindBlock("group3"), NXOpen.BlockStyler.Group)
AlignFace = CType(theDialog.TopBlock.FindBlock("AlignFace"), NXOpen.BlockStyler.FaceCollector)
group2 = CType(theDialog.TopBlock.FindBlock("group2"), NXOpen.BlockStyler.Group)
TouchFace = CType(theDialog.TopBlock.FindBlock("TouchFace"), NXOpen.BlockStyler.FaceCollector)
group1 = CType(theDialog.TopBlock.FindBlock("group1"), NXOpen.BlockStyler.Group)
InnerEdge = CType(theDialog.TopBlock.FindBlock("InnerEdge"), NXOpen.BlockStyler.CurveCollector)
group = CType(theDialog.TopBlock.FindBlock("group"), NXOpen.BlockStyler.Group)
OuterEdge = CType(theDialog.TopBlock.FindBlock("OuterEdge"), NXOpen.BlockStyler.CurveCollector)

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Sub

'------------------------------------------------------------------------------
'Callback Name: dialogShown_cb
'This callback is executed just before the dialog launch. Thus any value set
'here will take precedence and dialog will be launched showing that value.
'------------------------------------------------------------------------------
Public Sub dialogShown_cb()
Try

'---- Enter your callback code here -----

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Sub

'------------------------------------------------------------------------------
'Callback Name: apply_cb
'------------------------------------------------------------------------------
Public Function apply_cb() As Integer
Dim errorCode as Integer = 0
Try

'---- Enter your callback code here -----

Catch ex As Exception

'---- Enter your exception handling code here -----
errorCode = 1
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
apply_cb = errorCode
End Function

'------------------------------------------------------------------------------
'Callback Name: update_cb
'------------------------------------------------------------------------------
Public Function update_cb(ByVal block As NXOpen.BlockStyler.UIBlock) As Integer
Try

If block Is AlignFace Then
'---- Enter your code here -----

ElseIf block Is TouchFace Then
'---- Enter your code here -----

ElseIf block Is InnerEdge Then
'---- Enter your code here -----

ElseIf block Is OuterEdge Then
'---- Enter your code here -----

End If

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
update_cb = 0
End Function

'------------------------------------------------------------------------------
'Callback Name: ok_cb
'------------------------------------------------------------------------------
Public Function ok_cb() As Integer
Dim errorCode as Integer = 0
Try

'---- Enter your callback code here -----
errorCode = apply_cb()

Catch ex As Exception

'---- Enter your exception handling code here -----
errorCode = 1
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
ok_cb = errorCode
End Function

'------------------------------------------------------------------------------
'Function Name: GetBlockProperties
'Returns the propertylist of the specified BlockID
'------------------------------------------------------------------------------
Public Function GetBlockProperties(ByVal blockID As String) As PropertyList
GetBlockProperties = Nothing
Try

GetBlockProperties = theDialog.GetBlockProperties(blockID)

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Function

End Class

I don't currently have access to a blockstyler license, so I won't be of much help with the dialog code. However, getting and setting the name of a face (or edge) is really straightforward. Once you have a reference to a face object, you can use the .Name property to query the existing name (if it has one) and the .SetName method to give it a name (or change the existing one).

Hi,

Here is the DLX code:
<?xml version="1.0" encoding="UTF-8"?>

And Here the created VB code:
'==============================================================================
' WARNING!! This file is overwritten by the Block UI Styler while generating
' the automation code. Any modifications to this file will be lost after
' generating the code again.
'
' Filename: C:\02_Customers\2_bestaande_klanten\FEI\Tools\Face_names\face_names.vb
'
' This file was generated by the NX Block UI Styler
' Created by: Ruud van den Brand
' Version: NX 11
' Date: 04-01-2019 (Format: mm-dd-yyyy)
' Time: 11:36 (Format: hh-mm)
'
'==============================================================================

'==============================================================================
' Purpose: This TEMPLATE file contains VB.NET source to guide you in the
' construction of your Block application dialog. The generation of your
' dialog file (.dlx extension) is the first step towards dialog construction
' within NX. You must now create a NX Open application that
' utilizes this file (.dlx).
'
' The information in this file provides you with the following:
'
' 1. Help on how to load and display your Block UI Styler dialog in NX
' using APIs provided in NXOpen.BlockStyler namespace
' 2. The empty callback methods (stubs) associated with your dialog items
' have also been placed in this file. These empty methods have been
' created simply to start you along with your coding requirements.
' The method name, argument list and possible return values have already
' been provided for you.
'==============================================================================

'------------------------------------------------------------------------------
'These imports are needed for the following template code
'------------------------------------------------------------------------------
Option Strict Off
Imports System
Imports NXOpen
Imports NXOpen.BlockStyler

'------------------------------------------------------------------------------
'Represents Block Styler application class
'------------------------------------------------------------------------------
Public Class face_names
'class members
Private Shared theSession As Session
Private Shared theUI As UI
Private theDlxFileName As String
Private theDialog As NXOpen.BlockStyler.BlockDialog
Private group3 As NXOpen.BlockStyler.Group' Block type: Group
Private Touch_face As NXOpen.BlockStyler.FaceCollector' Block type: Face Collector
Private group2 As NXOpen.BlockStyler.Group' Block type: Group
Private Align_face As NXOpen.BlockStyler.FaceCollector' Block type: Face Collector
Private group1 As NXOpen.BlockStyler.Group' Block type: Group
Private Inner_edge As NXOpen.BlockStyler.CurveCollector' Block type: Curve Collector
Private group As NXOpen.BlockStyler.Group' Block type: Group
Private outer_edge As NXOpen.BlockStyler.CurveCollector' Block type: Curve Collector

#Region "Block Styler Dialog Designer generator code"
'------------------------------------------------------------------------------
'Constructor for NX Styler class
'------------------------------------------------------------------------------
Public Sub New()
Try

theSession = Session.GetSession()
theUI = UI.GetUI()
theDlxFileName = "face_names.dlx"
theDialog = theUI.CreateDialog(theDlxFileName)
theDialog.AddApplyHandler(AddressOf apply_cb)
theDialog.AddOkHandler(AddressOf ok_cb)
theDialog.AddUpdateHandler(AddressOf update_cb)
theDialog.AddInitializeHandler(AddressOf initialize_cb)
theDialog.AddDialogShownHandler(AddressOf dialogShown_cb)

Catch ex As Exception

'---- Enter your exception handling code here -----
Throw ex
End Try
End Sub
#End Region

'------------------------------- DIALOG LAUNCHING ---------------------------------
'
' Before invoking this application one needs to open any part/empty part in NX
' because of the behavior of the blocks.
'
' Make sure the dlx file is in one of the following locations:
' 1.) From where NX session is launched
' 2.) $UGII_USER_DIR/application
' 3.) For released applications, using UGII_CUSTOM_DIRECTORY_FILE is highly
' recommended. This variable is set to a full directory path to a file
' containing a list of root directories for all custom applications.
' e.g., UGII_CUSTOM_DIRECTORY_FILE=$UGII_BASE_DIR\ugii\menus\custom_dirs.dat
'
' You can create the dialog using one of the following way:
'
' 1. Journal Replay
'
' 1) Replay this file through Tool->Journal->Play Menu.
'
' 2. USER EXIT
'
' 1) Create the Shared Library -- Refer "Block UI Styler programmer's guide"
' 2) Invoke the Shared Library through File->Execute->NX Open menu.
'
'------------------------------------------------------------------------------
Public Shared Sub Main()
Dim theface_names As face_names = Nothing
Try

theface_names = New face_names()
' The following method shows the dialog immediately
theface_names.Show()

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
Finally
If theface_names IsNot Nothing Then
theface_names.Dispose()
theface_names = Nothing
End If
End Try
End Sub
'------------------------------------------------------------------------------
' This method specifies how a shared image is unloaded from memory
' within NX. This method gives you the capability to unload an
' internal NX Open application or user exit from NX. Specify any
' one of the three constants as a return value to determine the type
' of unload to perform:
'
'
' Immediately : unload the library as soon as the automation program has completed
' Explicitly : unload the library from the "Unload Shared Image" dialog
' AtTermination : unload the library when the NX session terminates
'
'
' NOTE: A program which associates NX Open applications with the menubar
' MUST NOT use this option since it will UNLOAD your NX Open application image
' from the menubar.
'------------------------------------------------------------------------------
Public Shared Function GetUnloadOption(ByVal arg As String) As Integer
'Return CType(Session.LibraryUnloadOption.Explicitly, Integer)
Return CType(Session.LibraryUnloadOption.Immediately, Integer)
' Return CType(Session.LibraryUnloadOption.AtTermination, Integer)
End Function
'------------------------------------------------------------------------------
' Following method cleanup any housekeeping chores that may be needed.
' This method is automatically called by NX.
'------------------------------------------------------------------------------
Public Shared Sub UnloadLibrary(ByVal arg As String)
Try

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Sub

'------------------------------------------------------------------------------
'This method shows the dialog on the screen
'------------------------------------------------------------------------------
Public Sub Show()
Try

theDialog.Show

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Sub

'------------------------------------------------------------------------------
'Method Name: Dispose
'------------------------------------------------------------------------------
Public Sub Dispose()
If theDialog IsNot Nothing Then
theDialog.Dispose()
theDialog = Nothing
End If
End Sub

'------------------------------------------------------------------------------
'---------------------Block UI Styler Callback Functions--------------------------
'------------------------------------------------------------------------------

'------------------------------------------------------------------------------
'Callback Name: initialize_cb
'------------------------------------------------------------------------------
Public Sub initialize_cb()
Try

group3 = CType(theDialog.TopBlock.FindBlock("group3"), NXOpen.BlockStyler.Group)
Touch_face = CType(theDialog.TopBlock.FindBlock("Touch_face"), NXOpen.BlockStyler.FaceCollector)
group2 = CType(theDialog.TopBlock.FindBlock("group2"), NXOpen.BlockStyler.Group)
Align_face = CType(theDialog.TopBlock.FindBlock("Align_face"), NXOpen.BlockStyler.FaceCollector)
group1 = CType(theDialog.TopBlock.FindBlock("group1"), NXOpen.BlockStyler.Group)
Inner_edge = CType(theDialog.TopBlock.FindBlock("Inner_edge"), NXOpen.BlockStyler.CurveCollector)
group = CType(theDialog.TopBlock.FindBlock("group"), NXOpen.BlockStyler.Group)
outer_edge = CType(theDialog.TopBlock.FindBlock("outer_edge"), NXOpen.BlockStyler.CurveCollector)

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Sub

'------------------------------------------------------------------------------
'Callback Name: dialogShown_cb
'This callback is executed just before the dialog launch. Thus any value set
'here will take precedence and dialog will be launched showing that value.
'------------------------------------------------------------------------------
Public Sub dialogShown_cb()
Try

'---- Enter your callback code here -----

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Sub

'------------------------------------------------------------------------------
'Callback Name: apply_cb
'------------------------------------------------------------------------------
Public Function apply_cb() As Integer
Dim errorCode as Integer = 0
Try

'---- Enter your callback code here -----

Catch ex As Exception

'---- Enter your exception handling code here -----
errorCode = 1
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
apply_cb = errorCode
End Function

'------------------------------------------------------------------------------
'Callback Name: update_cb
'------------------------------------------------------------------------------
Public Function update_cb(ByVal block As NXOpen.BlockStyler.UIBlock) As Integer
Try

If block Is Touch_face Then
'---- Enter your code here -----

ElseIf block Is Align_face Then
'---- Enter your code here -----

ElseIf block Is Inner_edge Then
'---- Enter your code here -----

ElseIf block Is outer_edge Then
'---- Enter your code here -----

End If

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
update_cb = 0
End Function

'------------------------------------------------------------------------------
'Callback Name: ok_cb
'------------------------------------------------------------------------------
Public Function ok_cb() As Integer
Dim errorCode as Integer = 0
Try

'---- Enter your callback code here -----
errorCode = apply_cb()

Catch ex As Exception

'---- Enter your exception handling code here -----
errorCode = 1
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
ok_cb = errorCode
End Function

'------------------------------------------------------------------------------
'Function Name: GetBlockProperties
'Returns the propertylist of the specified BlockID
'------------------------------------------------------------------------------
Public Function GetBlockProperties(ByVal blockID As String) As PropertyList
GetBlockProperties = Nothing
Try

GetBlockProperties = theDialog.GetBlockProperties(blockID)

Catch ex As Exception

'---- Enter your exception handling code here -----
theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex.ToString)
End Try
End Function

End Class

Ruud van den Brand

NX CAD-Engineer

Something didn't go complete good.
here is the DLX file in the above is the VB file

<?xml version="1.0" encoding="UTF-8"?>

Ruud van den Brand

NX CAD-Engineer

<?xml version="1.0" encoding="UTF-8"?>

<Dialog ContainerItems="1" Expanded="1" NX="11.0.2" Saved="Mon Apr 01 11:36:15 2019
" class="" creator="Ruud van den Brand" id="Dialog" languageInfo="Language and Codeset: english 17" name="Dialog" notes="" title="C:\02_Customers\2_bestaande_klanten\FEI\Tools\Face_names\face_names.dlx" type="uicomp" version="1.0.0"><item ContainerItemBrowserName="Group Contents" ContainerItems="1" DoNotGroupThisObject="1" Expanded="1" IsAContainer="1" class="UGS::UICOMP_group" containerBrowserName="Group" hierarchy="UICOMP_face_select" icon="styler_block.bmp" id="group3" name="group3" notes="" presentation="Group" type="uicomp"><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="API Name" mask="16400" name="API Name" sname="BlockID" source="3" type="string" value="group3"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Visibility" mask="0" name="Visibility" sname="Show" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Group" mask="86020" name="Group" sname="Group" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Expanded" mask="0" name="Expanded" sname="Expanded" source="2" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="HideGroup" mask="69636" name="HideGroup" sname="HideGroup" source="2" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Focus" mask="69636" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="CanFocus" mask="69636" name="CanFocus" sname="CanFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="KeyboardFocus" mask="69636" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="CanKeyboardFocus" mask="69636" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP_widget" group="Other::" hierarchy="UGS::UICOMP_group" id="UIOnly" mask="69636" name="UIOnly" sname="RetainValueInUIOnly" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_widget" group="Other::" hierarchy="UGS::UICOMP_group" id="Translated" mask="16384" name="Translated" sname="Localize" source="1" type="logical" value="True"/><Property ClassID="UGS::UI::Comp::Container" dynamic="1" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="Members" mask="16384" name="Members" sname="Members" source="1" type="array"><PropertyList ClassID="UGS::UI::Comp::Container" Expanded="1" hierarchy="UGS::UICOMP_group" icon="tiles_palette.bmp" id="ContainerItems" mode="1"><Property class="UICOMP_face_select" hierarchy="UGS::UICOMP_group" id="Touch_face" mask="256" name="Touch_face" presentation="Face Collector" type="uicomp"><item Expanded="1" class="UICOMP_face_select" hierarchy="UICOMP_face_select" icon="select_face.bmp" id="Touch_face" name="Touch_face" notes="" presentation="Face Collector" type="uicomp"><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="API Name" mask="16656" name="API Name" sname="BlockID" source="3" type="string" value="Touch_face"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Visibility" mask="0" name="Visibility" sname="Show" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Group" mask="16384" name="Group" sname="Group" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Expanded" mask="4" name="Expanded" sname="Expanded" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="HideGroup" mask="69636" name="HideGroup" sname="HideGroup" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Focus" mask="69636" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="CanFocus" mask="69636" name="CanFocus" sname="CanFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="KeyboardFocus" mask="69636" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="CanKeyboardFocus" mask="69636" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_face_select" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="StepStatus" mask="16384" name="StepStatus" selected="0" sname="StepStatus" source="1" type="enum"><Option name="Required" value="0"/><Option name="Optional" value="1"/><Option name="Satisfied" value="2"/></Property><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="AutoCommit" mask="69632" name="AutoCommit" sname="AutoCommit" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Cue" mask="0" name="Cue" sname="Cue" source="1" type="utfstring" value="Select Face"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Many" mask="0" name="Many" selected="1" sname="SelectMode" source="3" type="enum"><Option name="Single" value="0"/><Option name="Multiple" value="1"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Icon" mask="0" name="Icon" sname="Bitmap" source="3" type="string" value="select_face"/><Property ClassID="UGS::UICOMP_selection" data="" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="DetailedFilter" mask="69632" name="DetailedFilter" size="0" sname="DetailedFilter" source="2" type="selfilter"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="MaximumScope" mask="0" name="MaximumScope" selected="10" sname="MaximumScope" source="1" type="enum"><Option name="Entire Assembly" value="3"/><Option name="Within Work Part Only" value="10"/><Option name="Within Work Part and Components" value="11"/></Property><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="ShadowScope" mask="69636" name="ShadowScope" selected="1" sname="ShadowScope" source="1" type="enum"><Option name="None" value="0"/><Option name="Allow Shadow Occurrence" value="1"/><Option name="Real Occurrence Only" value="2"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Label" mask="0" name="Label" sname="LabelString" source="3" type="utfstring" value="Select Face"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="ToolTip" mask="0" name="ToolTip" sname="ToolTip" source="3" type="utfstring" value="Face"/><Property ClassID="UGS::UICOMP_face_select" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="CreateInterpartLink" mask="0" name="CreateInterpartLink" sname="CreateInterpartLink" source="2" type="logical" value="False"/><Property ClassID="UGS::UICOMP_face_select" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="InterpartSelection" mask="0" name="InterpartSelection" selected="0" sname="InterpartSelection" source="1" type="enum"><Option name="Simple" value="0"/><Option name="Non-associative Interpart Copy Only" value="1"/><Option name="Associative and Non-associative Interpart Copy" value="2"/><Option name="Associative Interpart Copy" value="3"/></Property><Property ClassID="UGS::UICOMP_face_select" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="AutoProgress" mask="0" name="AutoProgress" sname="AutomaticProgression" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Blend Virtual Curve Overlay" mask="0" name="Blend Virtual Curve Overlay" sname="BlendVirtualCurveOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Virtual Center Point Overlay" mask="69636" name="Virtual Center Point Overlay" sname="VirtualCenterPointOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Notch Blend Virtual Face Overlay" mask="69636" name="Notch Blend Virtual Face Overlay" sname="NotchBlendVirtualFaceOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="IconState" mask="69636" name="IconState" sname="IconState" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="BalloonTooltipText" mask="0" name="BalloonTooltipText" sname="BalloonTooltipText" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="BalloonTooltipImage" mask="0" name="BalloonTooltipImage" sname="BalloonTooltipImage" source="1" type="string" value=""/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="BalloonTooltipLayout" mask="0" name="BalloonTooltipLayout" selected="0" sname="BalloonTooltipLayout" source="1" type="enum"><Option name="Horizontal" value="0"/><Option name="Vertical" value="1"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="AllowConvergentObject" mask="0" name="AllowConvergentObject" sname="AllowConvergentObject" source="4" type="logical" value="False"/><Property AskForcedBits="0" AskRequiresSetting="0" ClassID="UGS::UICOMP_sc_selection" dynamic="1" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="EntityType" mask="256" name="EntityType" sname="EntityType" source="1" type="bits" value="0x10"/><Property AskForcedBits="1" AskRequiresSetting="1" ClassID="UGS::UICOMP_sc_selection" dynamic="1" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="FaceMethodMask" mask="256" name="FaceMethodMask" sname="FaceRules" source="1" type="bits" value="0xe7f"/><Property ClassID="UGS::UICOMP_sc_selection" brief="0" dynamic="0" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="FaceMethod" mask="16384" name="FaceMethod" selected="4" sname="DefaultFaceRules" source="4" type="enum"><Option name="Single Face" value="1"/><Option name="Region Faces" value="2"/><Option name="Tangent Faces" value="4"/><Option name="Tangent Region Faces" value="8"/><Option name="Body Faces" value="16"/><Option name="Feature Faces" value="32"/><Option name="Adjacent Faces" value="64"/><Option name="Rib Faces" value="512"/><Option name="Slot Faces" value="1024"/><Option name="Boss and Pocket Faces" value="2048"/></Property><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="IncludeBoundaryBlends" mask="69632" name="IncludeBoundaryBlends" sname="IncludeBoundaryBlends" source="4" type="logical" value="True"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="IncludeBlendLike" mask="69632" name="IncludeBlendLike" sname="IncludeBlendLike" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="IncludeUnlabeledBlend" mask="69632" name="IncludeUnlabeledBlend" sname="IncludeUnlabeledBlend" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="PopupMenuEnabled" mask="16384" name="PopupMenuEnabled" sname="PopupMenuEnabled" source="4" type="logical" value="True"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="LaminarEdgesOnlyState" mask="69632" name="LaminarEdgesOnlyState" sname="LaminarEdgesOnlyState" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Scope" mask="69636" name="Scope" selected="10" sname="Scope" source="2" type="enum"><Option name="Entire Assembly" value="3"/><Option name="Within Work Part Only" value="10"/><Option name="Within Work Part and Components" value="11"/></Property><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Top" loc="1" mask="16384" name="Top" offset="0" sname="Top" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Left" loc="2" mask="16384" name="Left" offset="0" sname="Left" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Right" loc="3" mask="16384" name="Right" offset="0" sname="Right" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Bottom" loc="4" mask="16384" name="Bottom" offset="0" sname="Bottom" source="3" target="Default" type="attachment"/></PropertyList></item></Property></PropertyList></Property><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="Column" mask="16384" name="Column" sname="Column" source="1" type="integer" value="1"/><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipText" mask="0" name="BalloonTooltipText" sname="BalloonTooltipText" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipImage" mask="0" name="BalloonTooltipImage" sname="BalloonTooltipImage" source="1" type="string" value=""/><Property ClassID="UGS::UICOMP_group" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipLayout" mask="0" name="BalloonTooltipLayout" selected="0" sname="BalloonTooltipLayout" source="1" type="enum"><Option name="Horizontal" value="0"/><Option name="Vertical" value="1"/></Property><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Top" loc="1" mask="16384" name="Top" offset="0" sname="Top" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Left" loc="2" mask="16384" name="Left" offset="0" sname="Left" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Right" loc="3" mask="16384" name="Right" offset="0" sname="Right" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Bottom" loc="4" mask="16384" name="Bottom" offset="0" sname="Bottom" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Title" mask="257" name="Title" sname="Label" source="1" type="utfstring" value="Select touch face"/></PropertyList></item><item ContainerItemBrowserName="Group Contents" ContainerItems="1" DoNotGroupThisObject="1" Expanded="1" IsAContainer="1" class="UGS::UICOMP_group" containerBrowserName="Group" hierarchy="UICOMP_edge_select" icon="styler_block.bmp" id="group2" name="group2" notes="" presentation="Group" type="uicomp"><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="API Name" mask="16400" name="API Name" sname="BlockID" source="3" type="string" value="group2"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Visibility" mask="0" name="Visibility" sname="Show" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Group" mask="86020" name="Group" sname="Group" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Expanded" mask="0" name="Expanded" sname="Expanded" source="2" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="HideGroup" mask="69636" name="HideGroup" sname="HideGroup" source="2" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Focus" mask="69636" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="CanFocus" mask="69636" name="CanFocus" sname="CanFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="KeyboardFocus" mask="69636" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="CanKeyboardFocus" mask="69636" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP_widget" group="Other::" hierarchy="UGS::UICOMP_group" id="UIOnly" mask="69636" name="UIOnly" sname="RetainValueInUIOnly" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_widget" group="Other::" hierarchy="UGS::UICOMP_group" id="Translated" mask="16384" name="Translated" sname="Localize" source="1" type="logical" value="True"/><Property ClassID="UGS::UI::Comp::Container" dynamic="1" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="Members" mask="16384" name="Members" sname="Members" source="1" type="array"><PropertyList ClassID="UGS::UI::Comp::Container" Expanded="1" hierarchy="UGS::UICOMP_group" icon="tiles_palette.bmp" id="ContainerItems" mode="1"><Property class="UICOMP_face_select" hierarchy="UGS::UICOMP_group" id="Align_face" mask="256" name="Align_face" presentation="Face Collector" type="uicomp"><item Expanded="1" class="UICOMP_face_select" hierarchy="UGS::UI::Comp::Container" icon="select_face.bmp" id="Align_face" name="Align_face" notes="" presentation="Face Collector" type="uicomp"><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="API Name" mask="16656" name="API Name" sname="BlockID" source="3" type="string" value="Align_face"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Visibility" mask="0" name="Visibility" sname="Show" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Group" mask="16384" name="Group" sname="Group" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Expanded" mask="4" name="Expanded" sname="Expanded" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="HideGroup" mask="69636" name="HideGroup" sname="HideGroup" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="Focus" mask="69636" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="CanFocus" mask="69636" name="CanFocus" sname="CanFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="KeyboardFocus" mask="69636" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="CanKeyboardFocus" mask="69636" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_face_select" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="StepStatus" mask="16384" name="StepStatus" selected="0" sname="StepStatus" source="1" type="enum"><Option name="Required" value="0"/><Option name="Optional" value="1"/><Option name="Satisfied" value="2"/></Property><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_face_select" id="AutoCommit" mask="69632" name="AutoCommit" sname="AutoCommit" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Cue" mask="0" name="Cue" sname="Cue" source="1" type="utfstring" value="Select Face"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Many" mask="0" name="Many" selected="1" sname="SelectMode" source="3" type="enum"><Option name="Single" value="0"/><Option name="Multiple" value="1"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Icon" mask="0" name="Icon" sname="Bitmap" source="3" type="string" value="select_face"/><Property ClassID="UGS::UICOMP_selection" data="" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="DetailedFilter" mask="69632" name="DetailedFilter" size="0" sname="DetailedFilter" source="2" type="selfilter"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="MaximumScope" mask="0" name="MaximumScope" selected="10" sname="MaximumScope" source="1" type="enum"><Option name="Entire Assembly" value="3"/><Option name="Within Work Part Only" value="10"/><Option name="Within Work Part and Components" value="11"/></Property><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="ShadowScope" mask="69636" name="ShadowScope" selected="1" sname="ShadowScope" source="1" type="enum"><Option name="None" value="0"/><Option name="Allow Shadow Occurrence" value="1"/><Option name="Real Occurrence Only" value="2"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Label" mask="0" name="Label" sname="LabelString" source="3" type="utfstring" value="Select Face"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="ToolTip" mask="0" name="ToolTip" sname="ToolTip" source="3" type="utfstring" value="Face"/><Property ClassID="UGS::UICOMP_face_select" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="CreateInterpartLink" mask="0" name="CreateInterpartLink" sname="CreateInterpartLink" source="2" type="logical" value="False"/><Property ClassID="UGS::UICOMP_face_select" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="InterpartSelection" mask="0" name="InterpartSelection" selected="0" sname="InterpartSelection" source="1" type="enum"><Option name="Simple" value="0"/><Option name="Non-associative Interpart Copy Only" value="1"/><Option name="Associative and Non-associative Interpart Copy" value="2"/><Option name="Associative Interpart Copy" value="3"/></Property><Property ClassID="UGS::UICOMP_face_select" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="AutoProgress" mask="0" name="AutoProgress" sname="AutomaticProgression" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Blend Virtual Curve Overlay" mask="0" name="Blend Virtual Curve Overlay" sname="BlendVirtualCurveOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Virtual Center Point Overlay" mask="69636" name="Virtual Center Point Overlay" sname="VirtualCenterPointOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Notch Blend Virtual Face Overlay" mask="69636" name="Notch Blend Virtual Face Overlay" sname="NotchBlendVirtualFaceOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="IconState" mask="69636" name="IconState" sname="IconState" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="BalloonTooltipText" mask="0" name="BalloonTooltipText" sname="BalloonTooltipText" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="BalloonTooltipImage" mask="0" name="BalloonTooltipImage" sname="BalloonTooltipImage" source="1" type="string" value=""/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="BalloonTooltipLayout" mask="0" name="BalloonTooltipLayout" selected="0" sname="BalloonTooltipLayout" source="1" type="enum"><Option name="Horizontal" value="0"/><Option name="Vertical" value="1"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="AllowConvergentObject" mask="0" name="AllowConvergentObject" sname="AllowConvergentObject" source="4" type="logical" value="False"/><Property AskForcedBits="0" AskRequiresSetting="0" ClassID="UGS::UICOMP_sc_selection" dynamic="1" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="EntityType" mask="256" name="EntityType" sname="EntityType" source="1" type="bits" value="0x10"/><Property AskForcedBits="1" AskRequiresSetting="1" ClassID="UGS::UICOMP_sc_selection" dynamic="1" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="FaceMethodMask" mask="256" name="FaceMethodMask" sname="FaceRules" source="1" type="bits" value="0xe7f"/><Property ClassID="UGS::UICOMP_sc_selection" brief="0" dynamic="0" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="FaceMethod" mask="16384" name="FaceMethod" selected="4" sname="DefaultFaceRules" source="4" type="enum"><Option name="Single Face" value="1"/><Option name="Region Faces" value="2"/><Option name="Tangent Faces" value="4"/><Option name="Tangent Region Faces" value="8"/><Option name="Body Faces" value="16"/><Option name="Feature Faces" value="32"/><Option name="Adjacent Faces" value="64"/><Option name="Rib Faces" value="512"/><Option name="Slot Faces" value="1024"/><Option name="Boss and Pocket Faces" value="2048"/></Property><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="IncludeBoundaryBlends" mask="69632" name="IncludeBoundaryBlends" sname="IncludeBoundaryBlends" source="4" type="logical" value="True"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="IncludeBlendLike" mask="69632" name="IncludeBlendLike" sname="IncludeBlendLike" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="IncludeUnlabeledBlend" mask="69632" name="IncludeUnlabeledBlend" sname="IncludeUnlabeledBlend" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="PopupMenuEnabled" mask="16384" name="PopupMenuEnabled" sname="PopupMenuEnabled" source="4" type="logical" value="True"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_face_select" id="LaminarEdgesOnlyState" mask="69632" name="LaminarEdgesOnlyState" sname="LaminarEdgesOnlyState" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_face_select" id="Scope" mask="69636" name="Scope" selected="10" sname="Scope" source="2" type="enum"><Option name="Entire Assembly" value="3"/><Option name="Within Work Part Only" value="10"/><Option name="Within Work Part and Components" value="11"/></Property><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Top" loc="1" mask="16384" name="Top" offset="0" sname="Top" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Left" loc="2" mask="16384" name="Left" offset="0" sname="Left" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Right" loc="3" mask="16384" name="Right" offset="0" sname="Right" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Bottom" loc="4" mask="16384" name="Bottom" offset="0" sname="Bottom" source="3" target="Default" type="attachment"/></PropertyList></item></Property></PropertyList></Property><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="Column" mask="16384" name="Column" sname="Column" source="1" type="integer" value="1"/><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipText" mask="0" name="BalloonTooltipText" sname="BalloonTooltipText" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipImage" mask="0" name="BalloonTooltipImage" sname="BalloonTooltipImage" source="1" type="string" value=""/><Property ClassID="UGS::UICOMP_group" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipLayout" mask="0" name="BalloonTooltipLayout" selected="0" sname="BalloonTooltipLayout" source="1" type="enum"><Option name="Horizontal" value="0"/><Option name="Vertical" value="1"/></Property><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Top" loc="1" mask="16384" name="Top" offset="0" sname="Top" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Left" loc="2" mask="16384" name="Left" offset="0" sname="Left" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Right" loc="3" mask="16384" name="Right" offset="0" sname="Right" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Bottom" loc="4" mask="16384" name="Bottom" offset="0" sname="Bottom" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Title" mask="257" name="Title" sname="Label" source="1" type="utfstring" value="Select align face"/></PropertyList></item><item ContainerItemBrowserName="Group Contents" ContainerItems="1" DoNotGroupThisObject="1" Expanded="1" IsAContainer="1" class="UGS::UICOMP_group" containerBrowserName="Group" hierarchy="UICOMP_edge_select" icon="styler_block.bmp" id="group1" name="group1" notes="" presentation="Group" type="uicomp"><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="API Name" mask="16400" name="API Name" sname="BlockID" source="3" type="string" value="group1"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Visibility" mask="0" name="Visibility" sname="Show" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Group" mask="86020" name="Group" sname="Group" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Expanded" mask="0" name="Expanded" sname="Expanded" source="2" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="HideGroup" mask="69636" name="HideGroup" sname="HideGroup" source="2" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Focus" mask="69636" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="CanFocus" mask="69636" name="CanFocus" sname="CanFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="KeyboardFocus" mask="69636" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="CanKeyboardFocus" mask="69636" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP_widget" group="Other::" hierarchy="UGS::UICOMP_group" id="UIOnly" mask="69636" name="UIOnly" sname="RetainValueInUIOnly" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_widget" group="Other::" hierarchy="UGS::UICOMP_group" id="Translated" mask="16384" name="Translated" sname="Localize" source="1" type="logical" value="True"/><Property ClassID="UGS::UI::Comp::Container" dynamic="1" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="Members" mask="16384" name="Members" sname="Members" source="1" type="array"><PropertyList ClassID="UGS::UI::Comp::Container" Expanded="1" hierarchy="UGS::UICOMP_group" icon="tiles_palette.bmp" id="ContainerItems" mode="1"><Property class="UICOMP_edge_select" hierarchy="UGS::UICOMP_group" id="Inner_edge" mask="256" name="Inner_edge" presentation="Curve Collector" type="uicomp"><item Expanded="1" class="UICOMP_edge_select" hierarchy="UICOMP_face_select" icon="select_edge.bmp" id="Inner_edge" name="Inner_edge" notes="" presentation="Curve Collector" type="uicomp"><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="API Name" mask="16656" name="API Name" sname="BlockID" source="3" type="string" value="Inner_edge"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Visibility" mask="0" name="Visibility" sname="Show" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Group" mask="16384" name="Group" sname="Group" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Expanded" mask="4" name="Expanded" sname="Expanded" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="HideGroup" mask="69636" name="HideGroup" sname="HideGroup" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Focus" mask="69636" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="CanFocus" mask="69636" name="CanFocus" sname="CanFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="KeyboardFocus" mask="69636" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="CanKeyboardFocus" mask="69636" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_edge_select" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="StepStatus" mask="16384" name="StepStatus" selected="0" sname="StepStatus" source="1" type="enum"><Option name="Required" value="0"/><Option name="Optional" value="1"/><Option name="Satisfied" value="2"/></Property><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="AutoCommit" mask="69632" name="AutoCommit" sname="AutoCommit" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Cue" mask="0" name="Cue" sname="Cue" source="1" type="utfstring" value="Select Curve"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Many" mask="0" name="Many" selected="1" sname="SelectMode" source="3" type="enum"><Option name="Single" value="0"/><Option name="Multiple" value="1"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Icon" mask="0" name="Icon" sname="Bitmap" source="3" type="string" value="select_curve"/><Property ClassID="UGS::UICOMP_selection" data="" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="DetailedFilter" mask="69632" name="DetailedFilter" size="0" sname="DetailedFilter" source="2" type="selfilter"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="MaximumScope" mask="0" name="MaximumScope" selected="10" sname="MaximumScope" source="1" type="enum"><Option name="Entire Assembly" value="3"/><Option name="Within Work Part Only" value="10"/><Option name="Within Work Part and Components" value="11"/></Property><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="ShadowScope" mask="69636" name="ShadowScope" selected="1" sname="ShadowScope" source="1" type="enum"><Option name="None" value="0"/><Option name="Allow Shadow Occurrence" value="1"/><Option name="Real Occurrence Only" value="2"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Label" mask="0" name="Label" sname="LabelString" source="3" type="utfstring" value="Select Curve"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="ToolTip" mask="0" name="ToolTip" sname="ToolTip" source="3" type="utfstring" value="Curve"/><Property ClassID="UGS::UICOMP_edge_select" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="CreateInterpartLink" mask="0" name="CreateInterpartLink" sname="CreateInterpartLink" source="2" type="logical" value="False"/><Property ClassID="UGS::UICOMP_edge_select" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="InterpartSelection" mask="0" name="InterpartSelection" selected="0" sname="InterpartSelection" source="1" type="enum"><Option name="Simple" value="0"/><Option name="Non-associative Interpart Copy Only" value="1"/><Option name="Associative and Non-associative Interpart Copy" value="2"/><Option name="Associative Interpart Copy" value="3"/></Property><Property ClassID="UGS::UICOMP_edge_select" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="AutoProgress" mask="0" name="AutoProgress" sname="AutomaticProgression" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Blend Virtual Curve Overlay" mask="0" name="Blend Virtual Curve Overlay" sname="BlendVirtualCurveOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Virtual Center Point Overlay" mask="69636" name="Virtual Center Point Overlay" sname="VirtualCenterPointOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Notch Blend Virtual Face Overlay" mask="69636" name="Notch Blend Virtual Face Overlay" sname="NotchBlendVirtualFaceOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="IconState" mask="69636" name="IconState" sname="IconState" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="BalloonTooltipText" mask="0" name="BalloonTooltipText" sname="BalloonTooltipText" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="BalloonTooltipImage" mask="0" name="BalloonTooltipImage" sname="BalloonTooltipImage" source="1" type="string" value=""/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="BalloonTooltipLayout" mask="0" name="BalloonTooltipLayout" selected="0" sname="BalloonTooltipLayout" source="1" type="enum"><Option name="Horizontal" value="0"/><Option name="Vertical" value="1"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="AllowConvergentObject" mask="0" name="AllowConvergentObject" sname="AllowConvergentObject" source="4" type="logical" value="False"/><Property AskForcedBits="0" AskRequiresSetting="0" ClassID="UGS::UICOMP_sc_selection" dynamic="1" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="EntityType" mask="256" name="EntityType" sname="EntityType" source="1" type="bits" value="0x5"/><Property AskForcedBits="1" AskRequiresSetting="1" ClassID="UGS::UICOMP_sc_selection" dynamic="1" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="WireMethodMask" mask="256" name="WireMethodMask" sname="CurveRules" source="1" type="bits" value="0x31f"/><Property ClassID="UGS::UICOMP_sc_selection" brief="0" dynamic="0" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="WireFrameMethod" mask="0" name="WireFrameMethod" selected="4" sname="DefaultCurveRules" source="4" type="enum"><Option name="Single Curve" value="1"/><Option name="Connected Curves" value="2"/><Option name="Tangent Curves" value="4"/><Option name="Face Edges" value="8"/><Option name="Body Edges" value="16"/><Option name="Vertex Edges" value="256"/><Option name="Vertex Tangent Edges" value="512"/></Property><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="PopupMenuEnabled" mask="16384" name="PopupMenuEnabled" sname="PopupMenuEnabled" source="4" type="logical" value="True"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="InferredCurveSelection" mask="0" name="InferredCurveSelection" sname="InferredCurveSelection" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="LaminarEdgesOnlyState" mask="69632" name="LaminarEdgesOnlyState" sname="LaminarEdgesOnlyState" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="AllowInferredCurveSelection" mask="0" name="AllowInferredCurveSelection" sname="AllowInferredCurveSelection" source="4" type="logical" value="True"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Scope" mask="69636" name="Scope" selected="10" sname="Scope" source="2" type="enum"><Option name="Entire Assembly" value="3"/><Option name="Within Work Part Only" value="10"/><Option name="Within Work Part and Components" value="11"/></Property><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Top" loc="1" mask="16384" name="Top" offset="0" sname="Top" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Left" loc="2" mask="16384" name="Left" offset="0" sname="Left" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Right" loc="3" mask="16384" name="Right" offset="0" sname="Right" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Bottom" loc="4" mask="16384" name="Bottom" offset="0" sname="Bottom" source="3" target="Default" type="attachment"/></PropertyList></item></Property></PropertyList></Property><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="Column" mask="16384" name="Column" sname="Column" source="1" type="integer" value="1"/><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipText" mask="0" name="BalloonTooltipText" sname="BalloonTooltipText" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipImage" mask="0" name="BalloonTooltipImage" sname="BalloonTooltipImage" source="1" type="string" value=""/><Property ClassID="UGS::UICOMP_group" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipLayout" mask="0" name="BalloonTooltipLayout" selected="0" sname="BalloonTooltipLayout" source="1" type="enum"><Option name="Horizontal" value="0"/><Option name="Vertical" value="1"/></Property><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Top" loc="1" mask="16384" name="Top" offset="0" sname="Top" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Left" loc="2" mask="16384" name="Left" offset="0" sname="Left" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Right" loc="3" mask="16384" name="Right" offset="0" sname="Right" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Bottom" loc="4" mask="16384" name="Bottom" offset="0" sname="Bottom" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Title" mask="257" name="Title" sname="Label" source="1" type="utfstring" value="Select inner edge"/></PropertyList></item><item ContainerItemBrowserName="Group Contents" ContainerItems="1" DoNotGroupThisObject="1" Expanded="1" IsAContainer="1" class="UGS::UICOMP_group" containerBrowserName="Group" hierarchy="UICOMP_edge_select" icon="styler_block.bmp" id="group" name="group" notes="" presentation="Group" type="uicomp"><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="API Name" mask="16400" name="API Name" sname="BlockID" source="3" type="string" value="group"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Visibility" mask="0" name="Visibility" sname="Show" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Group" mask="86020" name="Group" sname="Group" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Expanded" mask="0" name="Expanded" sname="Expanded" source="2" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="HideGroup" mask="69636" name="HideGroup" sname="HideGroup" source="2" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Focus" mask="69636" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="CanFocus" mask="69636" name="CanFocus" sname="CanFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="KeyboardFocus" mask="69636" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="CanKeyboardFocus" mask="69636" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP_widget" group="Other::" hierarchy="UGS::UICOMP_group" id="UIOnly" mask="69636" name="UIOnly" sname="RetainValueInUIOnly" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_widget" group="Other::" hierarchy="UGS::UICOMP_group" id="Translated" mask="16384" name="Translated" sname="Localize" source="1" type="logical" value="True"/><Property ClassID="UGS::UI::Comp::Container" dynamic="1" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="Members" mask="16384" name="Members" sname="Members" source="1" type="array"><PropertyList ClassID="UGS::UI::Comp::Container" Expanded="1" hierarchy="UGS::UICOMP_group" icon="tiles_palette.bmp" id="ContainerItems" mode="1"><Property class="UICOMP_edge_select" hierarchy="UGS::UICOMP_group" id="outer_edge" mask="256" name="outer_edge" presentation="Curve Collector" type="uicomp"><item Expanded="1" class="UICOMP_edge_select" hierarchy="UICOMP_edge_select" icon="select_edge.bmp" id="outer_edge" name="outer_edge" notes="" presentation="Curve Collector" type="uicomp"><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="API Name" mask="16656" name="API Name" sname="BlockID" source="3" type="string" value="outer_edge"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Visibility" mask="0" name="Visibility" sname="Show" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Group" mask="16384" name="Group" sname="Group" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Expanded" mask="4" name="Expanded" sname="Expanded" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="HideGroup" mask="69636" name="HideGroup" sname="HideGroup" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="Focus" mask="69636" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="CanFocus" mask="69636" name="CanFocus" sname="CanFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="KeyboardFocus" mask="69636" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="CanKeyboardFocus" mask="69636" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_edge_select" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="StepStatus" mask="16384" name="StepStatus" selected="0" sname="StepStatus" source="1" type="enum"><Option name="Required" value="0"/><Option name="Optional" value="1"/><Option name="Satisfied" value="2"/></Property><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_edge_select" id="AutoCommit" mask="69632" name="AutoCommit" sname="AutoCommit" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Cue" mask="0" name="Cue" sname="Cue" source="1" type="utfstring" value="Select Curve"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Many" mask="0" name="Many" selected="1" sname="SelectMode" source="3" type="enum"><Option name="Single" value="0"/><Option name="Multiple" value="1"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Icon" mask="0" name="Icon" sname="Bitmap" source="3" type="string" value="select_curve"/><Property ClassID="UGS::UICOMP_selection" data="" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="DetailedFilter" mask="69632" name="DetailedFilter" size="0" sname="DetailedFilter" source="2" type="selfilter"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="MaximumScope" mask="0" name="MaximumScope" selected="10" sname="MaximumScope" source="1" type="enum"><Option name="Entire Assembly" value="3"/><Option name="Within Work Part Only" value="10"/><Option name="Within Work Part and Components" value="11"/></Property><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="ShadowScope" mask="69636" name="ShadowScope" selected="1" sname="ShadowScope" source="1" type="enum"><Option name="None" value="0"/><Option name="Allow Shadow Occurrence" value="1"/><Option name="Real Occurrence Only" value="2"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Label" mask="0" name="Label" sname="LabelString" source="3" type="utfstring" value="Select Curve"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="ToolTip" mask="0" name="ToolTip" sname="ToolTip" source="3" type="utfstring" value="Curve"/><Property ClassID="UGS::UICOMP_edge_select" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="CreateInterpartLink" mask="0" name="CreateInterpartLink" sname="CreateInterpartLink" source="2" type="logical" value="False"/><Property ClassID="UGS::UICOMP_edge_select" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="InterpartSelection" mask="0" name="InterpartSelection" selected="0" sname="InterpartSelection" source="1" type="enum"><Option name="Simple" value="0"/><Option name="Non-associative Interpart Copy Only" value="1"/><Option name="Associative and Non-associative Interpart Copy" value="2"/><Option name="Associative Interpart Copy" value="3"/></Property><Property ClassID="UGS::UICOMP_edge_select" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="AutoProgress" mask="0" name="AutoProgress" sname="AutomaticProgression" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Blend Virtual Curve Overlay" mask="0" name="Blend Virtual Curve Overlay" sname="BlendVirtualCurveOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Virtual Center Point Overlay" mask="69636" name="Virtual Center Point Overlay" sname="VirtualCenterPointOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Notch Blend Virtual Face Overlay" mask="69636" name="Notch Blend Virtual Face Overlay" sname="NotchBlendVirtualFaceOverlay" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="IconState" mask="69636" name="IconState" sname="IconState" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="BalloonTooltipText" mask="0" name="BalloonTooltipText" sname="BalloonTooltipText" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="BalloonTooltipImage" mask="0" name="BalloonTooltipImage" sname="BalloonTooltipImage" source="1" type="string" value=""/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="BalloonTooltipLayout" mask="0" name="BalloonTooltipLayout" selected="0" sname="BalloonTooltipLayout" source="1" type="enum"><Option name="Horizontal" value="0"/><Option name="Vertical" value="1"/></Property><Property ClassID="UGS::UICOMP_selection" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="AllowConvergentObject" mask="0" name="AllowConvergentObject" sname="AllowConvergentObject" source="4" type="logical" value="False"/><Property AskForcedBits="0" AskRequiresSetting="0" ClassID="UGS::UICOMP_sc_selection" dynamic="1" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="EntityType" mask="256" name="EntityType" sname="EntityType" source="1" type="bits" value="0x5"/><Property AskForcedBits="1" AskRequiresSetting="1" ClassID="UGS::UICOMP_sc_selection" dynamic="1" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="WireMethodMask" mask="256" name="WireMethodMask" sname="CurveRules" source="1" type="bits" value="0x31f"/><Property ClassID="UGS::UICOMP_sc_selection" brief="0" dynamic="0" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="WireFrameMethod" mask="0" name="WireFrameMethod" selected="4" sname="DefaultCurveRules" source="4" type="enum"><Option name="Single Curve" value="1"/><Option name="Connected Curves" value="2"/><Option name="Tangent Curves" value="4"/><Option name="Face Edges" value="8"/><Option name="Body Edges" value="16"/><Option name="Vertex Edges" value="256"/><Option name="Vertex Tangent Edges" value="512"/></Property><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="PopupMenuEnabled" mask="16384" name="PopupMenuEnabled" sname="PopupMenuEnabled" source="4" type="logical" value="True"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="InferredCurveSelection" mask="0" name="InferredCurveSelection" sname="InferredCurveSelection" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="LaminarEdgesOnlyState" mask="69632" name="LaminarEdgesOnlyState" sname="LaminarEdgesOnlyState" source="4" type="logical" value="False"/><Property ClassID="UGS::UICOMP_sc_selection" group="Selection Intent::" hierarchy="UGS::UICOMP_edge_select" id="AllowInferredCurveSelection" mask="0" name="AllowInferredCurveSelection" sname="AllowInferredCurveSelection" source="4" type="logical" value="True"/><Property ClassID="UGS::UICOMP_selection" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_edge_select" id="Scope" mask="69636" name="Scope" selected="10" sname="Scope" source="2" type="enum"><Option name="Entire Assembly" value="3"/><Option name="Within Work Part Only" value="10"/><Option name="Within Work Part and Components" value="11"/></Property><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Top" loc="1" mask="16384" name="Top" offset="0" sname="Top" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Left" loc="2" mask="16384" name="Left" offset="0" sname="Left" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Right" loc="3" mask="16384" name="Right" offset="0" sname="Right" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Bottom" loc="4" mask="16384" name="Bottom" offset="0" sname="Bottom" source="3" target="Default" type="attachment"/></PropertyList></item></Property></PropertyList></Property><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="Column" mask="16384" name="Column" sname="Column" source="1" type="integer" value="1"/><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipText" mask="0" name="BalloonTooltipText" sname="BalloonTooltipText" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP_group" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipImage" mask="0" name="BalloonTooltipImage" sname="BalloonTooltipImage" source="1" type="string" value=""/><Property ClassID="UGS::UICOMP_group" brief="0" dynamic="0" group="Block Specific::" hierarchy="UGS::UICOMP_group" id="BalloonTooltipLayout" mask="0" name="BalloonTooltipLayout" selected="0" sname="BalloonTooltipLayout" source="1" type="enum"><Option name="Horizontal" value="0"/><Option name="Vertical" value="1"/></Property><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Top" loc="1" mask="16384" name="Top" offset="0" sname="Top" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Left" loc="2" mask="16384" name="Left" offset="0" sname="Left" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Right" loc="3" mask="16384" name="Right" offset="0" sname="Right" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UIFW_dialog_layout" group="Other::Attachments::" hierarchy="UGS::UIFW_dialog_layout" id="Bottom" loc="4" mask="16384" name="Bottom" offset="0" sname="Bottom" source="3" target="Default" type="attachment"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::UICOMP_group" id="Title" mask="257" name="Title" sname="Label" source="1" type="utfstring" value="Select outer edge"/></PropertyList></item><PropertyList id="id" mode="0"><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="Sensitivity" mask="0" name="Sensitivity" sname="Enable" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="Cue" mask="0" name="Cue" sname="Cue" source="1" type="utfstring" value=""/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="Group" mask="16384" name="Group" sname="Group" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="Expanded" mask="4" name="Expanded" sname="Expanded" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="HideGroup" mask="4100" name="HideGroup" sname="HideGroup" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="Focus" mask="4100" name="Focus" sname="Focus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="CanFocus" mask="4100" name="CanFocus" sname="CanFocus" source="1" type="logical" value="True"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="KeyboardFocus" mask="4100" name="KeyboardFocus" sname="KeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="CanKeyboardFocus" mask="4100" name="CanKeyboardFocus" sname="CanKeyboardFocus" source="1" type="logical" value="False"/><Property ClassID="UGS::UICOMP" brief="0" dynamic="0" group="General::Other::" hierarchy="UGS::Styler::DialogItem" id="DockPolicy" mask="0" name="DockPolicy" selected="1" sname="Dialog Sizing" source="1" type="enum"><Option name="Allow Resize" value="0"/><Option name="Follow Policy" value="1"/></Property><Property ClassID="UGS::UICOMP" brief="0" dynamic="0" group="General::Other::" hierarchy="UGS::Styler::DialogItem" id="NavigationStyle" mask="393216" name="NavigationStyle" selected="2" sname="Navigation Style" source="1" type="enum"><Option name="OK Cancel" value="0"/><Option name="Close" value="1"/><Option name="OK Apply Cancel" value="2"/></Property><Property AskForcedBits="0" AskRequiresSetting="0" ClassID="UGS::UICOMP" dynamic="1" group="General::" hierarchy="UGS::Styler::DialogItem" id="CommandSnapToggleMask" mask="4356" name="CommandSnapToggleMask" sname="CommandSnapToggleMask" source="2" type="bits" value="0x298"/><Property ClassID="UGS::UICOMP" group="General::" hierarchy="UGS::Styler::DialogItem" id="Title" mask="256" name="Title" sname="Label" source="1" type="utfstring" value="Changes Faces/Edge Names"/></PropertyList><AutoGenData><PropertyList id="id" mode="0"><Property ClassID="Bad Class Id (OM_invalid)" brief="0" dynamic="0" group="##43General::" hierarchy="NULL" id="Automation Language" mask="128" name="Automation Language" selected="5" sname="Language" source="3" type="enum"><Option name="C#" value="0"/><Option name="C++" value="1"/><Option name="Java" value="2"/><Option name="Python" value="4"/><Option name="VB.NET" value="5"/><Option name="VB.NET for SNAP" value="6"/></Property><Property ClassID="Bad Class Id (OM_invalid)" group="##43General::" hierarchy="NULL" id="Generate Comment" mask="0" name="Generate Comment" sname="Generate Comment" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="##43General::" hierarchy="NULL" id="Generate Partial Classes" mask="4" name="Generate Partial Classes" sname="Generate Partial Classes" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="##43General::" hierarchy="NULL" id="Generate Block Specific Code" mask="0" name="Generate Block Specific Code" sname="Generate Block Specific Code" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="Entry Points::" hierarchy="NULL" id="EPCallback" mask="0" name="EPCallback" sname="Callback" source="3" type="logical" value="False"/><Property ClassID="Bad Class Id (OM_invalid)" group="Entry Points::" hierarchy="NULL" id="EPMenu" mask="0" name="EPMenu" sname="Menu" source="3" type="logical" value="False"/><Property ClassID="Bad Class Id (OM_invalid)" group="Entry Points::" hierarchy="NULL" id="EPUserEntry" mask="0" name="EPUserEntry" sname="User Exit" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Filter" mask="0" name="Filter" sname="Filter" source="3" type="logical" value="False"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Update" mask="0" name="Update" sname="Update" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="OK" mask="0" name="OK" sname="OK" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Apply" mask="2" name="Apply" sname="Apply" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Cancel" mask="0" name="Cancel" sname="Cancel" source="3" type="logical" value="False"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Close" mask="4" name="Close" sname="Close" source="3" type="logical" value="False"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Initialize" mask="2" name="Initialize" sname="Initialize" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Dialog Shown" mask="0" name="Dialog Shown" sname="Dialog Shown" source="3" type="logical" value="True"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Focus Notify" mask="0" name="Focus Notify" sname="Focus Notify" source="3" type="logical" value="False"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Keyboard Focus Notify" mask="0" name="Keyboard Focus Notify" sname="Keyboard Focus Notify" source="3" type="logical" value="False"/><Property ClassID="Bad Class Id (OM_invalid)" group="Dialog Callbacks::" hierarchy="NULL" id="Enable OK/Apply Button" mask="0" name="Enable OK/Apply Button" sname="Enable OK/Apply Button" source="3" type="logical" value="False"/><Property ClassID="Bad Class Id (OM_invalid)" group="Catalog Specific::" hierarchy="NULL" id="Block Name" mask="132" name="Block Name" sname="Block Name" source="3" type="utfstring" value=""/><Property ClassID="Bad Class Id (OM_invalid)" group="Catalog Specific::" hierarchy="NULL" id="Block Icon" mask="132" name="Block Icon" sname="Block Icon" source="3" type="string" value="hand"/><Property ClassID="Bad Class Id (OM_invalid)" group="Catalog Specific::" hierarchy="NULL" id="Catalog Tooltip" mask="132" name="Catalog Tooltip" sname="Catalog Tooltip" source="3" type="utfstring" value="User Defined UI Block"/><Property ClassID="Bad Class Id (OM_invalid)" group="Catalog Specific::" hierarchy="NULL" id="Catalog Category" mask="132" name="Catalog Category" sname="Catalog Category" source="3" type="utfstring" value="User Defined UI Block"/></PropertyList></AutoGenData>
</Dialog>

Ruud van den Brand

NX CAD-Engineer