Difference between revisions of "RxBoxStyle"

From Ribbon Commander Documentation
Jump to: navigation, search
(Created page with "{{DISPLAYTITLE:rxBoxStyle}} Category:Enumerations")
 
Line 1: Line 1:
 
{{DISPLAYTITLE:rxBoxStyle}}
 
{{DISPLAYTITLE:rxBoxStyle}}
 
[[Category:Enumerations]]
 
[[Category:Enumerations]]
 +
 +
== Description ==
 +
rxBoxStyle models element [http://msdn.microsoft.com/en-us/library/dd909883(v=office.12).aspx ST_BoxStyle] of the MS Custom UI XML specification which specifies the layout style of a container control.
 +
 +
== 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>

Revision as of 16:15, 13 March 2013


Description

rxBoxStyle models element ST_BoxStyle of the MS Custom UI XML specification which specifies the layout style of a container control.

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

Remarks

Examples

VBA

  1.  

C#

  1.  

VB.NET

  1.  

C++

  1.