AttributeCollection.Item[] Propriedade

Definição

Obtém o atributo com o índice especificado.

Sobrecargas

Item[Int32]

Obtém o atributo com o número de índice especificado.

Item[Type]

Obtém o atributo com o tipo especificado.

Item[Int32]

Origem:
AttributeCollection.cs
Origem:
AttributeCollection.cs
Origem:
AttributeCollection.cs

Obtém o atributo com o número de índice especificado.

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

Parâmetros

index
Int32

O índice baseado em zero do AttributeCollection.

Valor da propriedade

O Attribute com o número de índice especificado.

Exemplos

O exemplo de código a seguir usa a Item[] propriedade para imprimir o nome do Attribute especificado pelo número de índice em uma caixa de texto. Como o número de índice é baseado em zero, este exemplo de código imprime o nome do segundo Attribute em uma caixa de texto. Ele pressupõe button1 e textBox1 foi criado em um formulário.

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

Comentários

O número do índice é baseado em zero. Portanto, você deve subtrair 1 da posição numérica de um determinado Attribute para acessar esse Attribute. Por exemplo, para obter o terceiro Attribute, você precisa especificar myColl[2].

Confira também

Aplica-se a

Item[Type]

Origem:
AttributeCollection.cs
Origem:
AttributeCollection.cs
Origem:
AttributeCollection.cs

Obtém o atributo com o tipo especificado.

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

Parâmetros

attributeType
Type

O Type do Attribute a obter da coleção.

Valor da propriedade

O Attribute com o tipo especificado ou, se o atributo não existir, o valor padrão para o tipo de atributo.

Exemplos

O exemplo de código a seguir obtém o DesignerAttribute da coleção e imprime seu valor. Ele pressupõe que button1 e textBox1 tenham sido criados em um formulário.

Para este exemplo de código ser executado, você deve fornecer o nome de assembly totalmente qualificado. Para obter informações sobre como obter o nome do assembly totalmente qualificado, consulte Nomes de assembly.

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

Comentários

Se o atributo não existir na coleção, essa propriedade retornará o valor padrão para o tipo de atributo.

Confira também

Aplica-se a