Enum DrawingLevel
This enumeration represents the drawing level used in the GeoCanvas.
public enum DrawingLevel
Fields
LabelLevel = 4The level for label drawing
LevelFour = 3The fourth drawing level.
LevelOne = 0The first drawing level.
LevelThree = 2The third drawing level.
LevelTwo = 1The second drawing level.
Remarks
This enumeration is used to control the drawing level. If you draw an item on the first level and another item on the second level, the second level item will occlude the first. In this way, you can layer various drawing symbols to get unique effects. For example, you can create a road by first drawing a wide black line on level one, followed by a thinner white line on level two. The white line will draw on top of the black line and create the illusion of an outlined road. Adding a centered dashed line on level three will create a centerline.