ModulePage.RightToLeftLayout Property

Definition

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];
}

Applies to