Type.IsAutoLayout Propiedad

Definición

Obtiene un valor que indica si los campos de tipo de la actual se disponen automáticamente mediante Common Language Runtime.

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

Valor de propiedad

true si la propiedad Attributes del tipo actual incluye AutoLayout; en caso contrario, es false.

Implementaciones

Ejemplos

En el ejemplo siguiente se crea una instancia del tipo y se muestra la IsAutoLayout propiedad .

#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);
    }
}
open System.Runtime.InteropServices

// The Demo class is attributed as AutoLayout.
[<StructLayoutAttribute(LayoutKind.Auto)>]
type Demo = class end

// Create an instance of the Type class using the GetType method.
let myType = typeof<Demo>
// Get and display the IsAutoLayout property of the
// Demoinstance.
printfn $"\nThe AutoLayout property for the Demo class is {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

Comentarios

Este alojamiento se proporciona como comodidad. Como alternativa, puede usar el TypeAttributes.LayoutMask valor de enumeración para seleccionar los atributos de diseño de tipo y, a continuación, probar si TypeAttributes.AutoLayout está establecido. TypeAttributes.ExplicitLayoutLos TypeAttributes.AutoLayoutvalores de enumeración , y TypeAttributes.SequentialLayout indican la forma en que los campos del tipo se disponen en la memoria.

Para los tipos dinámicos, puede especificar TypeAttributes.AutoLayout al crear el tipo. En el código, aplique el StructLayoutAttribute atributo con el LayoutKind.Auto valor de enumeración al tipo para permitir que el tiempo de ejecución determine la manera adecuada de diseñar la clase.

Nota:

No puede usar el GetCustomAttributes método para determinar si StructLayoutAttribute se ha aplicado a un tipo.

Si el objeto actual Type representa un tipo genérico construido, esta propiedad se aplica a la definición de tipo genérico desde la que se construyó el tipo. Por ejemplo, si el objeto actual Type representa MyGenericType<int> (MyGenericType(Of Integer) en Visual Basic), el valor de esta propiedad viene determinado por MyGenericType<T>.

Si el objeto actual Type representa un parámetro de tipo en la definición de un tipo genérico o un método genérico, esta propiedad siempre devuelve false.

Se aplica a

Consulte también