ScriptObject.Item[] Proprietà
Definizione
Ottiene o imposta un membro dell'oggetto script.Gets or sets a member of the script object.
Overload
Item[Double] |
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice. Ottiene o imposta un membro dell'oggetto script designato dal valore di indice Double specificato.Gets or sets a member of the script object that is designated by the specified Double index value. |
Item[Int32] |
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice. Ottiene o imposta un membro dell'oggetto script designato dal valore di indice Int32 specificato.Gets or sets a member of the script object that is designated by the specified Int32 index value. |
Item[Object[]] |
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice. Ottiene o imposta un membro dell'oggetto script designato dal nome, dal valore di indice Double o dal valore di indice Int32 specificato.Gets or sets a member of the script object that is designated by the specified name, Double index value, or Int32 index value. |
Item[String] |
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice. Ottiene o imposta un membro dell'oggetto script designato dal nome specificato.Gets or sets a member of the script object that is designated by the specified name. |
Item[Double]
Ottiene o imposta un membro dell'oggetto script designato dal valore di indice Double specificato.Gets or sets a member of the script object that is designated by the specified Double index value.
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.
public:
property System::Object ^ default[double] { System::Object ^ get(double index); void set(double index, System::Object ^ value); };
public object this[double index] { get; set; }
member this.Item(double) : obj with get, set
Default Public Property Item(index As Double) As Object
Parametri
- index
- Double
Indice del membro.The index of the member.
Valore della proprietà
Valore del membro in corrispondenza di index
.The value of the member that is at index
.
Vedi anche
Si applica a
Item[Int32]
Ottiene o imposta un membro dell'oggetto script designato dal valore di indice Int32 specificato.Gets or sets a member of the script object that is designated by the specified Int32 index value.
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.
public:
property System::Object ^ default[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
public object this[int index] { get; set; }
member this.Item(int) : obj with get, set
Default Public Property Item(index As Integer) As Object
Parametri
- index
- Int32
Indice del membro.The index of the member.
Valore della proprietà
Valore del membro in corrispondenza di index
.The value of the member that is at index
.
Vedi anche
Si applica a
Item[Object[]]
Ottiene o imposta un membro dell'oggetto script designato dal nome, dal valore di indice Double o dal valore di indice Int32 specificato.Gets or sets a member of the script object that is designated by the specified name, Double index value, or Int32 index value.
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.
public:
property System::Object ^ default[cli::array <System::Object ^> ^] { System::Object ^ get(... cli::array <System::Object ^> ^ pars); void set(... cli::array <System::Object ^> ^ pars, System::Object ^ value); };
public object this[params object[] pars] { get; set; }
member this.Item(obj[]) : obj with get, set
Default Public Property Item(ParamArray pars As Object()) As Object
Parametri
- pars
- Object[]
Nome o indice del membro.The name or index of the member.
Valore della proprietà
Valore del membro specificato in pars
.The value of the member that is specified in pars
.
Commenti
Se la pars
matrice ha più di un elemento, l'ultimo elemento è l'argomento per questa proprietà.If the pars
array has more than one element, the last element is the argument for this property.
Vedi anche
Si applica a
Item[String]
Ottiene o imposta un membro dell'oggetto script designato dal nome specificato.Gets or sets a member of the script object that is designated by the specified name.
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.
public:
property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); void set(System::String ^ name, System::Object ^ value); };
public object this[string name] { get; set; }
member this.Item(string) : obj with get, set
Default Public Property Item(name As String) As Object
Parametri
- name
- String
Nome del membro.The name of the member.
Valore della proprietà
Valore del membro denominato name
.The value of the member that is named name
.