RhinoObjectSelectSubObject Method (ComponentIndex, Boolean, Boolean) |
Reports if an object can be selected.
Namespace:
Rhino.DocObjects
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public int SelectSubObject(
ComponentIndex componentIndex,
bool select,
bool syncHighlight
)
Public Function SelectSubObject (
componentIndex As ComponentIndex,
select As Boolean,
syncHighlight As Boolean
) As Integer
Parameters
- componentIndex
- Type: Rhino.GeometryComponentIndex
Index of sub-object to check. - select
- Type: SystemBoolean
The new selection state; true activates selection. - syncHighlight
- Type: SystemBoolean
(default=true)
If true, then the object is highlighted if it is selected
and unhighlighted if is not selected.
Return Value
Type:
Int32
0: object is not selected
1: object is selected
2: object is selected persistently.
Remarks
Objects that are locked, hidden, or on locked or hidden layers
cannot be selected. If IsSelectableWithGripsOn() returns false,
then an that object is not selectable if it has grips turned on.
See Also