Returns the default Symbol for use with the indicated SymbolType.

Namespace:  ESRI.ArcGISExplorer.Mapping

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public static Symbol GetDefault(
	SymbolType symbolType
)
Visual Basic (Declaration)
Public Shared Function GetDefault ( _
	symbolType As SymbolType _
) As Symbol

Parameters

symbolType
Type: ESRI.ArcGISExplorer.Mapping..::.SymbolType

The SymbolType enumeration to use.

Return Value

The default symbol for the specified SymbolType.

Remarks

The default symbols for the SymbolType enumeration are as follows:

  • Marker - Orange Stickpin
  • Line - Red solid line
  • Fill - Red solid fill

The Unknown SymbolType does not have a default symbol (returns null). A Multipatch shape with textures should not use the default red fill, as this will interfere with the display of the texture; instead use Symbol.GetDefault(GeometryType.Multipatch) to return a suitable Symbol.

See Also