DocumentLookOptions Enumeration |
Options when looking for visuals.
Namespace:
Demo3D.Visuals
Assembly:
Demo3D.Core (in Demo3D.Core.dll) Version: 10.0.0.6737
Syntax[FlagsAttribute]
public enum LookOptions
Members|
| Member name | Value | Description |
|---|
| Default | 0 |
Include only visible and selectable visuals.
|
| All | 3 |
Look for all visuals.
|
| IncludeInvisible | 1 |
Include invisible visuals.
|
| IncludeNonSelectable | 2 |
Include non-selectable visuals.
|
| LookInsideGroups | 4 |
Look inside groups.
|
| IgnoreSelectParentWhenPicked | 8 |
Ignore SelectParentWhenPicked properties.
|
| AdjustLookFromPosition | 16 |
Move the "look" position very slightly "down" the direction to avoid cases where the
"look" position is on the surface of a visible object and we don't want to "find" this
visual. This is the default for LookDown when using a Visual.
|
See Also