Type.IsAutoLayout Свойство

Определение

Получает значение, указывающее, выкладываются ли поля текущего типа автоматически средой CLR.

public:
 property bool IsAutoLayout { bool get(); };
public bool IsAutoLayout { get; }
member this.IsAutoLayout : bool
Public ReadOnly Property IsAutoLayout As Boolean

Значение свойства

Boolean

Значение true, если свойство Attributes текущего типа включает AutoLayout; в противном случае — значение false.

Реализации

Примеры

В следующем примере создается экземпляр типа и отображается IsAutoLayout свойство.

#using <System.dll>

using namespace System;
using namespace System::Reflection;
using namespace System::ComponentModel;
using namespace System::Runtime::InteropServices;

// The MyDemoAttribute class is selected as AutoLayout.

[StructLayoutAttribute(LayoutKind::Auto)]
public ref class MyDemoAttribute{};

void MyAutoLayoutMethod( String^ typeName )
{
   try
   {
      
      // Create an instance of the Type class using the GetType method.
      Type^ myType = Type::GetType( typeName );
      
      // Get and display the IsAutoLayout property of the
      // MyDemoAttribute instance.
      Console::WriteLine( "\nThe AutoLayout property for the MyDemoAttribute is {0}.", myType->IsAutoLayout );
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "\nAn exception occurred: {0}.", e->Message );
   }

}

int main()
{
   MyAutoLayoutMethod( "MyDemoAttribute" );
}
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);
    }
}
Imports System.Runtime.InteropServices

' The Demo class is has the AutoLayout attribute.
<StructLayoutAttribute(LayoutKind.Auto)> _
Public Class Demo
End Class 

Public Class Example
    Public Shared Sub Main()
        ' Get the Type object for the Demo class.
        Dim myType As Type = GetType(Demo)
        ' Get and display the IsAutoLayout property of the 
        ' Demo class.
        Console.WriteLine("The AutoLayout property for the Demo class is '{0}'.", _
            myType.IsAutoLayout.ToString())
    End Sub 
End Class

Комментарии

Это свойство предоставляется для удобства. Кроме того, можно использовать TypeAttributes.LayoutMask значение перечисления для выбора атрибутов макета типа, а затем проверить TypeAttributes.AutoLayout , задан ли параметр. TypeAttributes.AutoLayout TypeAttributes.ExplicitLayout Значения перечисления, и TypeAttributes.SequentialLayout указывают способ расположения полей типа в памяти.

Для динамических типов можно указать TypeAttributes.AutoLayout при создании типа. В коде примените StructLayoutAttribute атрибут со LayoutKind.Auto значением перечисления к типу, чтобы среда выполнения самостоятельно определила соответствующий способ размещения класса.

Примечание

Нельзя использовать метод, GetCustomAttributes чтобы определить, применен ли к StructLayoutAttribute типу.

Если текущий объект Type представляет сконструированный универсальный тип, это свойство применяется к определению универсального типа, из которого был создан тип. например, если current Type представляет MyGenericType<int> ( MyGenericType(Of Integer) в Visual Basic), значение этого свойства определяетсяMyGenericType<T>.

Если Current Type представляет параметр типа в определении универсального типа или универсального метода, это свойство всегда возвращает значение false .

Применяется к

См. также раздел