Class PmpSelectionBoxSelectionSubmittedEventArgs
- Namespace
- Hymma.Solidworks.Addins
- Assembly
- Hymma.Solidworks.Addins.dll
event arguments for SelectionSubmitted
public class PmpSelectionBoxSelectionSubmittedEventArgs : EventArgs
- Inheritance
-
PmpSelectionBoxSelectionSubmittedEventArgs
- Inherited Members
Constructors
PmpSelectionBoxSelectionSubmittedEventArgs(object, int, string)
default constructor
public PmpSelectionBoxSelectionSubmittedEventArgs(object selection, int selectType, string tag)
Parameters
selectionobjectObject being selected
selectTypeintEntity type of the selection as defined inSolidWorks.Interop.swconst.swSelectType_e
tagstringItemText is returned to SOLIDWORKS and stored on the selected object and can be used by your PropertyManager page selection list boxes for the life of that selection.
Properties
SelectType
Entity type of the selection as defined in SolidWorks.Interop.swconst.swSelectType_e
public int SelectType { get; }
Property Value
Selection
object being selected
public object Selection { get; }
Property Value
Tag
ItemText is returned to SOLIDWORKS and stored on the selected object and can be used by your PropertyManager page selection list boxes for the life of that selection
public string Tag { get; }