Provides access to members that control the SymbologyControl.
Product Availability
Description
The ISymbologyControl interface is a starting point for any tasks related to the SymbologyControl, such as setting general appearance, loading symbology from within server style files and setting the style class.
Members
Description | ||
---|---|---|
AboutBox | Displays a dialog of information about the SymbologyControl. | |
Appearance | The appearance of the SymbologyControl. | |
BackColor | Background color of the SymbologyControl. | |
BorderStyle | The border style of the SymbologyControl. | |
Clear | Clears all symbols and files from the SymbologyControl. | |
CustomProperty | A property to associate data with the SymbologyControl. | |
DisplayStyle | The display style of the SymbologyControl. | |
Enabled | Indicates whether the SymbologyControl can respond to user generated events. | |
GetStyleClass | Returns the specified style class from the SymbologyControl. | |
HitTest | Returns the item at the specified x and y coordinates. | |
hWnd | Handle to the window associated with the SymbologyControl. | |
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. | |
LoadDesktopStyleFile | Loads a desktop style file into the SymbologyControl. | |
LoadStyleFile | Loads a server style file into the SymbologyControl. | |
MouseIcon | Custom mouse icon used if MousePointer is 99. | |
MousePointer | The mouse pointer displayed over the SymbologyControl. | |
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. | |
RemoveFile | Removes a file from the SymbologyControl. | |
ShowContextMenu | Indicates if the SymbologyControl displays a context menu. | |
StyleClass | The style class used by the SymbologyControl. |
CoClasses that implement ISymbologyControl
CoClasses and Classes | Description |
---|---|
SymbologyControl | Provides access to the ESRI SymbologyControl. |
When querying interface to ISymbologyControl 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.
ISymbologyControl symbologyControl = axSymbologyControl1.Object as ISymbologyControl;
When querying interface to ISymbologyControl 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 symbologyControl As ISymbologyControl = AxSymbologyControl1.Object