ArcObjects Library Reference (Controls)  

ISceneControl Interface

Provides access to members that control the SceneControl.

Product Availability

Available with ArcGIS Engine.

Description

The ISceneControl interface is a starting point for any tasks related to the SceneControl, such as setting general appearance, adding scene documents, managing the scene, scene graph and camera, and setting the current tool. 

Members

Description
Method AboutBox Displays a dialog of information about the SceneControl.
Read/write property Appearance The appearance of the SceneControl.
Read/write property BackColor Background color of the SceneControl.
Read/write property BorderStyle The border style of the SceneControl.
Read/write property Camera The Camera object associated with the SceneControl.
Method CheckSxFile Checks if a filename is a scene document.
Read/write property CurrentTool Current active tool for the SceneControl. Set to nothing to clear the tool.
Read/write property CustomProperty A property to associate data with a control.
Read/write property DocumentFilename The filename of the last scene document loaded into the control.
Read/write property Enabled Indicates whether the SceneControl can respond to user generated events.
Read-only property hWnd Handle to the window associated with the SceneControl.
Read/write property KeyIntercept A property that specifies interception of key strokes that are normally handled by the container. When intercepted the OnKeyDown and OnKeyUp events will be called. This value can be a combined bit mask of esriKeyIntercept enum values.
Method LoadSxFile Loads a scene document into the SceneControl.
Read/write property MouseIcon Custom mouse icon used if MousePointer is 99.
Read/write property MousePointer The mouse pointer displayed over the SceneControl.
Read/write property Navigate Indicates if the SceneControl performs default scene navigation in response to mouse events.
Read-only property Object A property that returns the underlying control. This can be used when the control is inside a wrapper object that has been added by a development environment.
Read/write property OverrideBackColor Indicates whether to override the background color of the scene document.
Read-only property Scene The Scene object associated with the SceneControl.
Read/write property SceneGraph The SceneGraph object associated with the SceneControl.
Read-only property SceneViewer The SceneViewer associated with the SceneControl.
Read/write property ShowSceneTips Indicates if scene tips are shown.
Read/write property TipDelay The delay before scene tips are shown.
Read/write property TipStyle The style of scene tips.

CoClasses that implement ISceneControl

CoClasses and Classes Description
SceneControl Esri SceneControl
[C#]

When querying interface to ISceneControl in Visual Basic .NET or Visual C# .NET the Object property or container specific code must be used. This is because .NET contains the real control inside a wrapper object known as an host.

ISceneControl sceneControl = axSceneControl1.Object as ISceneControl;

[Visual Basic .NET]

When querying interface to ISceneControl in Visual Basic .NET or Visual C# .NET the Object property or container specific code must be used. This is because .NET contains the real control inside a wrapper object known as an host.

Dim sceneControl As ISceneControl = AxSceneControl1.Object