Provides access to members that control the SceneControl.
Product Availability
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 | ||
---|---|---|
AboutBox | Displays a dialog of information about the SceneControl. | |
Appearance | The appearance of the SceneControl. | |
BackColor | Background color of the SceneControl. | |
BorderStyle | The border style of the SceneControl. | |
Camera | The Camera object associated with the SceneControl. | |
CheckSxFile | Checks if a filename is a scene document. | |
CurrentTool | Current active tool for the SceneControl. Set to nothing to clear the tool. | |
CustomProperty | A property to associate data with a control. | |
DocumentFilename | The filename of the last scene document loaded into the control. | |
Enabled | Indicates whether the SceneControl can respond to user generated events. | |
hWnd | Handle to the window associated with the SceneControl. | |
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. | |
LoadSxFile | Loads a scene document into the SceneControl. | |
MouseIcon | Custom mouse icon used if MousePointer is 99. | |
MousePointer | The mouse pointer displayed over the SceneControl. | |
Navigate | Indicates if the SceneControl performs default scene navigation in response to mouse events. | |
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. | |
OverrideBackColor | Indicates whether to override the background color of the scene document. | |
Scene | The Scene object associated with the SceneControl. | |
SceneGraph | The SceneGraph object associated with the SceneControl. | |
SceneViewer | The SceneViewer associated with the SceneControl. | |
ShowSceneTips | Indicates if scene tips are shown. | |
TipDelay | The delay before scene tips are shown. | |
TipStyle | The style of scene tips. |
CoClasses that implement ISceneControl
CoClasses and Classes | Description |
---|---|
SceneControl | ESRI SceneControl |
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;
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