ITextSnapshot.Item Property
Gets one character at the specified position.
Namespace: Microsoft.VisualStudio.Text
Assembly: Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)
Syntax
'Declaration
ReadOnly Default Property Item ( _
position As Integer _
) As Char
char this[
int position
] { get; }
property wchar_t default[int position] {
wchar_t get (int position);
}
abstract Item :
position:int -> char with get
JScript does not support indexed properties.
Parameters
position
Type: Int32The position of the character.
Property Value
Type: Char
The character at position.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | position is less than zero, or greater than or equal to the length of the snapshot. |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.