AttributeCollection.Item[] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したインデックスの属性を取得します。
オーバーロード
Item[Int32] |
指定したインデックス番号の属性を取得します。 |
Item[Type] |
指定した型の属性を取得します。 |
Item[Int32]
指定したインデックス番号の属性を取得します。
public:
virtual property Attribute ^ default[int] { Attribute ^ get(int index); };
public virtual Attribute this[int index] { get; }
member this.Item(int) : Attribute
Default Public Overridable ReadOnly Property Item(index As Integer) As Attribute
パラメーター
- index
- Int32
AttributeCollection の 0 から始まるインデックス。
プロパティ値
指定したインデックス番号を持つ Attribute。
例
次のコード例では、 プロパティを Item[] 使用して、インデックス番号で指定された の Attribute 名前をテキスト ボックスに出力します。 インデックス番号は 0 から始まるため、次のコード例ではテキスト ボックスに 2 番目 Attribute の名前を出力します。 フォーム上に button1
textBox1
と が作成されていることを前提としています。
private:
void PrintIndexItem()
{
// Creates a new collection and assigns it the attributes for button1.
AttributeCollection^ attributes;
attributes = TypeDescriptor::GetAttributes( button1 );
// Prints the second attribute's name.
textBox1->Text = attributes[ 1 ]->ToString();
}
private void PrintIndexItem() {
// Creates a new collection and assigns it the attributes for button1.
AttributeCollection attributes;
attributes = TypeDescriptor.GetAttributes(button1);
// Prints the second attribute's name.
textBox1.Text = attributes[1].ToString();
}
Private Sub PrintIndexItem
' Creates a new collection and assigns it the attributes for button1.
Dim attributes As AttributeCollection
attributes = TypeDescriptor.GetAttributes(button1)
' Prints the second attribute's name.
textBox1.Text = attributes(1).ToString
End Sub
注釈
インデックス番号は 0 から始まります。 したがって、その Attributeにアクセスするには、特定Attributeの の数値位置から 1 を減算する必要があります。 たとえば、3 番目 Attributeの を取得するには、 を指定 myColl[2]
する必要があります。
こちらもご覧ください
適用対象
Item[Type]
指定した型の属性を取得します。
public:
virtual property Attribute ^ default[Type ^] { Attribute ^ get(Type ^ attributeType); };
public virtual Attribute this[Type attributeType] { get; }
public virtual Attribute? this[Type attributeType] { get; }
member this.Item(Type) : Attribute
Default Public Overridable ReadOnly Property Item(attributeType As Type) As Attribute
パラメーター
プロパティ値
指定した型の Attribute。そのような属性が存在しない場合は、指定した属性型の既定値。
例
次のコード例では、 コレクションから を DesignerAttribute 取得し、その値を出力します。 と がbutton1
textBox1
フォーム上に作成されていることを前提としています。
このコード例を実行するには、完全修飾アセンブリ名を指定する必要があります。 完全修飾アセンブリ名を取得する方法については、「アセンブリ 名」を参照してください。
void PrintIndexItem2()
{
// Creates a new collection and assigns it the attributes for button1.
AttributeCollection^ attributes;
attributes = TypeDescriptor::GetAttributes( button1 );
// Gets the designer attribute from the collection.
DesignerAttribute^ myDesigner;
// You must supply a valid fully qualified assembly name here.
myDesigner = dynamic_cast<DesignerAttribute^>(attributes[ Type::GetType( "Assembly text name, Version, Culture, PublicKeyToken" ) ]);
textBox1->Text = myDesigner->DesignerTypeName;
}
private void PrintIndexItem2() {
// Creates a new collection and assigns it the attributes for button1.
AttributeCollection attributes;
attributes = TypeDescriptor.GetAttributes(button1);
// Gets the designer attribute from the collection.
DesignerAttribute myDesigner;
// You must supply a valid fully qualified assembly name here.
myDesigner = (DesignerAttribute)attributes[Type.GetType("Assembly text name, Version, Culture, PublicKeyToken")];
textBox1.Text = myDesigner.DesignerTypeName;
}
Private Sub PrintIndexItem2
' Creates a new collection and assigns it the attributes for button1.
Dim attributes As AttributeCollection
attributes = TypeDescriptor.GetAttributes(button1)
' Gets the designer attribute from the collection.
Dim myDesigner As DesignerAttribute
' You must supply a valid fully qualified assembly name here.
myDesigner = CType(attributes(Type.GetType("Assembly text name, Version, Culture, PublicKeyToken")), DesignerAttribute)
textBox1.Text = myDesigner.DesignerTypeName
End Sub
注釈
属性がコレクションに存在しない場合、このプロパティは属性型の既定値を返します。
こちらもご覧ください
適用対象
.NET