Description
Gets or sets whether individual marker indices will be included in the pick results returned from the scene's Pick method. Each marker index that is picked will be returned as a batch primitive index.
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