Difference between revisions of "RxAlign"
From Ribbon Commander Documentation
(Created page with "{{DISPLAYTITLE:rxAlign}} Category:Enumerations") |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:rxAlign}} | {{DISPLAYTITLE:rxAlign}} | ||
[[Category:Enumerations]] | [[Category:Enumerations]] | ||
+ | |||
+ | |||
+ | == Description == | ||
+ | rxAlign models element [http://msdn.microsoft.com/en-us/library/dd945713(v=office.12).aspx ST_Align] of the MS Custom UI XML specification which specifies the position where the child controls of a container control are aligned. | ||
+ | |||
+ | == Members == | ||
+ | {{DocTableBegin | Col1Name=Property Name | Col2Name=Description}} | ||
+ | {{DocTableEntry | name=rxaNone}} | ||
+ | {{DocTableEntry | name=rxaTopLeft}} | ||
+ | {{DocTableEntry | name=rxaTop}} | ||
+ | {{DocTableEntry | name=rxaTopRight}} | ||
+ | {{DocTableEntry | name=rxaLeft}} | ||
+ | {{DocTableEntry | name=rxaCenter}} | ||
+ | {{DocTableEntry | name=rxaRight}} | ||
+ | {{DocTableEntry | name=rxaBottomLeft}} | ||
+ | {{DocTableEntry | name=rxaBottom}} | ||
+ | {{DocTableEntry | name=rxaBottomRight}} | ||
+ | {{DocTableEnd}} | ||
+ | |||
+ | == Remarks == | ||
+ | |||
+ | == Examples == | ||
+ | |||
+ | === VBA === | ||
+ | <syntaxhighlight lang="vb" line> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | === C# === | ||
+ | <syntaxhighlight lang="csharp" line> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | === VB.NET === | ||
+ | <syntaxhighlight lang="vb" line> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | === C++ === | ||
+ | <syntaxhighlight lang="cpp" line> | ||
+ | </syntaxhighlight> |
Latest revision as of 15:07, 13 March 2013
Description
rxAlign models element ST_Align of the MS Custom UI XML specification which specifies the position where the child controls of a container control are aligned.
Members
Property Name
|
Description
|
rxaNone | Value not set |
rxaTopLeft | Specifies that child controls are aligned at the top left of the container |
rxaTop | Specifies that child controls are aligned at the top of the container |
rxaTopRight | Specifies that child controls are aligned at the top right of the container |
rxaLeft | Specifies that child controls are aligned at the left side of the container |
rxaCenter | Specifies that child controls are aligned at the center of the container |
rxaRight | Specifies that child controls are aligned at the right side of the container |
rxaBottomLeft | Specifies that child controls are aligned at the bottom left of the container |
rxaBottom | Specifies that child controls are aligned at the bottom of the container |
rxaBottomRight | Specifies that child controls are aligned at the bottom right of the container |