EngProgrammer
Aerospace
- Jan 14, 2015
- 150
Dear Forum,
I trying to develop a custom dialog box for the selection of a GD&T symbol or Note within a drafting sheet.
Below is the code I am having issues with getting the selection prompt to pick up on the drafting note.
Please any suggestions on what I am doing wrong. Thanks.
I trying to develop a custom dialog box for the selection of a GD&T symbol or Note within a drafting sheet.
Below is the code I am having issues with getting the selection prompt to pick up on the drafting note.
Please any suggestions on what I am doing wrong. Thanks.
Code:
Dim SelectColumnAnnotation As Selection.Response
Dim ColumnAnnotation As NXObject = Nothing
Try
SelectColumnAnnotation = SelectAnnotation("Select Column Annotation", ColumnAnnotation)
Catch ex As Exception
Throw New Exception("Failed Selecting Upstream Arc")
End Try
Function SelectAnnotation(ByVal prompt As String, ByRef selObj As NXObject) As Selection.Response
Dim theUI As UI = UI.GetUI
Dim title As String = "Select an Arc"
Dim includeFeatures As Boolean = False
Dim keepHighlighted As Boolean = False
Dim selAction As Selection.SelectionAction = Selection.SelectionAction.ClearAndEnableSpecific
Dim cursor As Point3d
Dim scope As Selection.SelectionScope = Selection.SelectionScope.WorkPart
Dim selectionMask_array(0) As Selection.MaskTriple
With selectionMask_array(0)
.Type = UFConstants.UF_annotation_type
.Subtype = 0
End With
Dim resp As Selection.Response = theUI.SelectionManager.SelectTaggedObject(prompt, _
title, scope, selAction, _
includeFeatures, keepHighlighted, selectionMask_array, _
selObj, cursor)
If resp = Selection.Response.ObjectSelected OrElse resp = Selection.Response.ObjectSelectedByName Then
Return Selection.Response.Ok
Else
Return Selection.Response.Cancel
End If
End Function