ModulePage.RightToLeftLayout Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether right-to-left mirror placement is turned on.
public:
property bool RightToLeftLayout { bool get(); void set(bool value); };
public bool RightToLeftLayout { get; set; }
member this.RightToLeftLayout : bool with get, set
Public Property RightToLeftLayout As Boolean
Property Value
true
if right-to-left mirror placement is turned on; false
if standard child control placement is used. The default is false
.
Examples
The following example sets this property with the value from the Microsoft.Web.Management.Server.PropertyBag object.
void InitializeState(PropertyBag bag) {
_readOnly = (bool)bag[SH.ReadOnly];
this.RightToLeftLayout = (bool)bag[SH.RightToLeftLayout];
}