次の方法で共有


Type.IsLayoutSequential プロパティ

Type に、クラスのレイアウト属性として SequentialLayout が選択されているかどうかを示す値を取得します。

Public ReadOnly Property IsLayoutSequential As Boolean
[C#]
public bool IsLayoutSequential {get;}
[C++]
public: __property bool get_IsLayoutSequential();
[JScript]
public function get IsLayoutSequential() : Boolean;

プロパティ値

Type に、クラスのレイアウト属性として SequentialLayout が選択されている場合は true 。それ以外の場合は false

解説

LayoutMask は、クラスのレイアウト属性を選択するために使用します。クラス レイアウト属性 (AutoLayoutSequentialLayout 、および ExplicitLayout) は、クラス インスタンスのフィールドのメモリ上でのレイアウトを定義します。

詳細については、.NET Framework SDK と共にインストールされる Tool Developers Guide ディレクトリにある、共通言語ランタイムの仕様ドキュメント「Partition II Metadata」 (9.1.2) を参照してください。

使用例

[Visual Basic, C#, C++] StructLayoutAttribute クラスの LayoutKind 列挙体の Sequential メンバが設定されたクラスのインスタンスを作成し、プロパティ IsLayoutSequential のチェックを行って、結果を返す例を次に示します。

 
Imports System
Imports System.Reflection
Imports System.ComponentModel
Imports System.Runtime.InteropServices
Imports Microsoft.VisualBasic
Class MyTypeSequential1
End Class 'MyTypeSequential1
<StructLayoutAttribute(LayoutKind.Sequential)> Class MyTypeSequential2
    Public Shared Sub Main()
        Try
            ' Create an instance of MyTypeSequential1.
            Dim myObj1 As New MyTypeSequential1()
            Dim myTypeObj1 As Type = myObj1.GetType()
            ' Check for and display the SequentialLayout attribute.
            Console.WriteLine(ControlChars.Cr + "The object myObj1 has IsLayoutSequential: {0}.", myObj1.GetType().IsLayoutSequential.ToString())
            ' Create an instance of MyTypeSequential2.
            Dim myObj2 As New MyTypeSequential2()
            Dim myTypeObj2 As Type = myObj2.GetType()
            ' Check for and display the SequentialLayout attribute.
            Console.WriteLine(ControlChars.Cr + "The object myObj2 has IsLayoutSequential: {0}.", myObj2.GetType().IsLayoutSequential.ToString())
        Catch e As Exception
            Console.WriteLine(ControlChars.Cr + "An exception occurred: {0}", e.Message.ToString())
        End Try
    End Sub 'Main
End Class 'MyTypeSeq2

[C#] 
using System;
using System.Reflection;
using System.ComponentModel;
using System.Runtime.InteropServices;
class MyTypeSequential1
{
}
[StructLayoutAttribute(LayoutKind.Sequential)]
class MyTypeSequential2
{
    public static void Main(string []args)
    {
        try
        {
            // Create an instance of myTypeSeq1.
            MyTypeSequential1 myObj1 = new MyTypeSequential1();
            Type myTypeObj1 = myObj1.GetType();
            // Check for and display the SequentialLayout attribute.
            Console.WriteLine("\nThe object myObj1 has IsLayoutSequential: {0}.", myObj1.GetType().IsLayoutSequential);
            // Create an instance of 'myTypeSeq2' class.
            MyTypeSequential2 myObj2 = new MyTypeSequential2();
            Type myTypeObj2 = myObj2.GetType();
            // Check for and display the SequentialLayout attribute.
            Console.WriteLine("\nThe object myObj2 has IsLayoutSequential: {0}.", myObj2.GetType().IsLayoutSequential);
        }
        catch(Exception e)
        {
            Console.WriteLine("\nAn exception occurred: {0}", e.Message);
        }
    }
}

[C++] 
#using <mscorlib.dll>
#using <System.dll>

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

__gc class MyTypeSequential1 {
};

[StructLayoutAttribute(LayoutKind::Sequential)]
__gc class MyTypeSequential2 {
};

int main() {
   try {
      // Create an instance of myTypeSeq1.
      MyTypeSequential1* myObj1 = new MyTypeSequential1();
      // Check for and display the SequentialLayout attribute.
      Console::WriteLine(S"\nThe object myObj1 has IsLayoutSequential: {0}.", __box(myObj1->GetType()->IsLayoutSequential));
      // Create an instance of 'myTypeSeq2' class.
      MyTypeSequential2* myObj2 = new MyTypeSequential2();
      // Check for and display the SequentialLayout attribute.
      Console::WriteLine(S"\nThe object myObj2 has IsLayoutSequential: {0}.", __box(myObj2->GetType()->IsLayoutSequential));
   } catch (Exception* e) {
      Console::WriteLine(S"\nAn exception occurred: {0}", e->Message);
   }
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, Common Language Infrastructure (CLI) Standard

参照

Type クラス | Type メンバ | System 名前空間 | TypeAttributes | IsAutoLayout | IsExplicitLayout | メタデータの概要