DesignerOptionService.DesignerOptionCollection.Item[] Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene la colección secundaria en el índice especificado.
Sobrecargas
Item[Int32] |
Obtiene la colección secundaria en el índice especificado. |
Item[String] |
Obtiene la colección secundaria en el nombre determinado. |
Item[Int32]
- Source:
- DesignerOptionService.cs
- Source:
- DesignerOptionService.cs
- Source:
- DesignerOptionService.cs
Obtiene la colección secundaria en el índice especificado.
public:
property System::ComponentModel::Design::DesignerOptionService::DesignerOptionCollection ^ default[int] { System::ComponentModel::Design::DesignerOptionService::DesignerOptionCollection ^ get(int index); };
public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[int index] { get; }
public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection? this[int index] { get; }
member this.Item(int) : System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection
Default Public ReadOnly Property Item(index As Integer) As DesignerOptionService.DesignerOptionCollection
Parámetros
- index
- Int32
Índice de base cero de la colección secundaria que se va a obtener.
Valor de propiedad
Colección secundaria que se encuentra en el índice especificado.
Se aplica a
Item[String]
- Source:
- DesignerOptionService.cs
- Source:
- DesignerOptionService.cs
- Source:
- DesignerOptionService.cs
Obtiene la colección secundaria en el nombre determinado.
public:
property System::ComponentModel::Design::DesignerOptionService::DesignerOptionCollection ^ default[System::String ^] { System::ComponentModel::Design::DesignerOptionService::DesignerOptionCollection ^ get(System::String ^ name); };
public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection this[string name] { get; }
public System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection? this[string name] { get; }
member this.Item(string) : System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection
Default Public ReadOnly Property Item(name As String) As DesignerOptionService.DesignerOptionCollection
Parámetros
- name
- String
Nombre de la colección secundaria.
Valor de propiedad
Colección secundaria con el nombre especificado por el parámetro name
o null
si no se encuentra el nombre.
Comentarios
La búsqueda de nombres no distingue mayúsculas de minúsculas.