Description
An enum of possible values for application and drawing status bars.
Visual Basic
Public Enum ApplicationAndDrawingStatusBarsToggle AllOff = 0 ApplicationOnly AllOn DrawingStatusBarOnly End Enum
C#
public enum ApplicationAndDrawingStatusBarsToggle { AllOff = 0, ApplicationOnly, AllOn, DrawingStatusBarOnly }
Members
Members | Description |
---|---|
AllOff = 0 | Both items are off |
ApplicationOnly | Only application is on |
AllOn | Both items are on |
DrawingStatusBarOnly | Only drawing status bar is on |