This .NET enum wraps the possible values returned by the AcPane.GetStyle() ObjectARX function. This function returns the current pane style.
Public Enum PaneStyles Command = &H10 NoBorders = 1 Normal = 8 PopOut = 2 PopUp = &H20 Stretch = 4 End Enum
public enum PaneStyles { Command = 0x10, NoBorders = 1, Normal = 8, PopOut = 2, PopUp = 0x20, Stretch = 4 }
Members |
Description |
Command = 0x10 |
This pane is initially displayed as a borderless pane. When the user moves the mouse over the pane, the pane will do one of the following: 1. By default (or if the Normal style is set for the pane), the pane will be drawn like the Normal style pane above. 2. If the Popout style has been set for the pane, the pane will be drawn like the Popout style pane above. If the user right-clicks, left-clicks, or left-double-clicks on the pane, or moves the mouse away from the pane, the pane borders will no longer be displayed. |
NoBorders = 1 |
No 3-D border around the pane. |
Normal = 8 |
No stretch, borders, or pop-out. |
PopOut = 2 |
Reverses border so that text pops out. |
PopUp = 0x20 |
This pane is initially displayed as a borderless pane. When the user moves the mouse over the pane, the pane will be drawn like the Popout style pane above. If the user right-clicks, left-clicks, or left-double-clicks on the pane, or moves the mouse away from the pane, the pane borders will no longer be displayed. |
Stretch = 4 |
Stretches pane to fill unused space. |
Comments? |