[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets a value indicating whether the class layout attribute AutoLayout is selected for the Type.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Booleantrue if the class layout attribute AutoLayout is selected for the Type; otherwise, false.
Implements
_Type.IsAutoLayoutThe LayoutMask is used to select the class layout attributes. The class layout attributes (AutoLayout, SequentialLayout 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. Classes marked with the AutoLayout attribute indicate that the loader will choose the appropriate way to lay out the class; any layout information that may have been specified is ignored.
If the current Type represents a constructed generic type, this property applies to the generic type definition from which the type was constructed. For example, if the current Type represents MyGenericType<int> (MyGenericType(Of Integer) in Visual Basic), the value of this property is determined by MyGenericType<T>.
If the current Type represents a type parameter in the definition of a generic type or generic method, this property always returns false.
The following example creates an instance of the type and displays the IsAutoLayout property.
using System; using System.Runtime.InteropServices; // The Demo class is attributed as AutoLayout. [StructLayoutAttribute(LayoutKind.Auto)] public class Demo { } public class Example { public static void Main() { // Create an instance of the Type class using the GetType method. Type myType=typeof(Demo); // Get and display the IsAutoLayout property of the // Demoinstance. Console.WriteLine("\nThe AutoLayout property for the Demo class is {0}.", myType.IsAutoLayout); } }
Windows 8 Release Preview, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

