Proprietà Property.NumIndices
Ottiene il numero di indici necessari per accedere al valore.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property NumIndices As Short
Get
short NumIndices { get; }
property short NumIndices {
short get ();
}
abstract NumIndices : int16
function get NumIndices () : short
Valore proprietà
Tipo: System.Int16
Valore short integer che rappresenta il numero di indici necessari per accedere al valore.
Note
Gli argomenti validi per IndexedValue vanno da 1 al valore restituito dalla proprietà NumIndices, incluso.
Esempi
' Visual Studio macro.
Sub NumIndicesExample()
Dim Props As Properties
Dim PropObj As [Property]
Dim NameValPair As String
Props = DTE.Properties("Environment", "General")
MsgBox("Tools – Options – Environment – General Properties Count _
= " & Props.Count())
For Each PropObj In Props
NameValPair = NameValPair & (PropObj.Name & "Value = " & _
PropObj.Value & microsoft.VisualBasic.ControlChars.CrLf)
Next
MsgBox(NameValPair)
MsgBox("NumIndices value: " & PropObj.NumIndices)
End Sub
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.