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