VCCodeParameter.Index Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the position of a parameter in a parameter list.
public:
property int Index { int get(); };
public:
property int Index { int get(); };
[System.Runtime.InteropServices.DispId(579)]
public int Index { [System.Runtime.InteropServices.DispId(579)] get; }
[<System.Runtime.InteropServices.DispId(579)>]
[<get: System.Runtime.InteropServices.DispId(579)>]
member this.Index : int
Public ReadOnly Property Index As Integer
Property Value
The position of a parameter in a parameter list.
- Attributes
Examples
This example assumes that a class named AClassWithAttributes
exists in the project and that it has an attribute block.
Sub ReturnAllAttributes()
Dim cm As VCCodeModel
cm = DTE.Solution.Item(1).CodeModel
Dim cl As VCCodeClass
cl = cm.Classes.Item("AClassWithAttributes")
Dim att As VCCodeAttribute
For Each att In cl.Attributes
MsgBox(att.Name + " " + att.Index.ToString())
Next
End Sub
Remarks
The Index property is one-based. The initial value of the Index property is 1. Its value changes whenever a successful match is made.