Description
Gets or sets whether individual text indices will be included in the
PickResults returned from the
Scene's Pick method. Each text index that is picked will be returned as a
BatchPrimitiveIndex.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property PerItemPickingEnabled() As Boolean
|
| [C#] |
|---|
public bool PerItemPickingEnabled {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_PerItemPickingEnabled(); public: __property void set_PerItemPickingEnabled(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_PerItemPickingEnabled(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_PerItemPickingEnabled(
VARIANT_BOOL PerItemPickingEnabled
);
|
| [Java] |
|---|
public bool getPerItemPickingEnabled();
public void setPerItemPickingEnabled(
bool
);
|
[Python - STK API ] |
|---|
@property
def PerItemPickingEnabled(self) -> bool:
@PerItemPickingEnabled.setter
def PerItemPickingEnabled(self, PerItemPickingEnabled:bool) -> None:
|
See Also