NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Type.IsAutoLayout

Gets a value indicating whether the class layout attribute AutoLayout is selected for the Type.

[Visual Basic]
Public ReadOnly Property IsAutoLayout As Boolean
[C#]
public bool IsAutoLayout {get;}
[C++]
public: __property bool get_IsAutoLayout();
[JScript]
public function get IsAutoLayout() : Boolean;

Property Value

true if the class layout attribute AutoLayout is selected for the Type; otherwise, false.

Remarks

The LayoutMask is used to select the class layout attributes. The class layout attributes (AutoLayout, LayoutSequential and ExplicitLayout) define how the fields of the class instance are laid out in memory.

Use the AutoLayout attribute to let the runtime engine decide the best way to layout the objects of the class.

See Also

Type Class | Type Members | System Namespace | TypeAttributes | IsLayoutSequential | IsExplicitLayout