This enum specifies possible values for the orientation of a RibbonPanel: Docked or Floating.
Public Enum RibbonPanelOrient Docked = 1 Floating = 2 End Enum
public enum RibbonPanelOrient { Docked = 1, Floating = 2 }
Members |
Description |
Docked = 1 |
The ribbon panel is docked. |
Floating = 2 |
The ribbon panel is floating. |
Comments? |