NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

BitVector32.Item (Section)

Sets or checks the value for the specfied section.

[C#] In C#, this member is the indexer for the BitVector32 class.

[Visual Basic]
Overloads Public Default Property Item( _
   ByVal section As BitVector32.Section _
) As Integer
[C#]
public int this[
   BitVector32.Section section
] {get; set;}
[C++]
public: __property int get_Item(
   BitVector32.Section section
);
public: __property void set_Item(
   BitVector32.Section section,
   int
);
[JScript]
returnValue = BitVector32Object.Item(section);
BitVector32Object.Item(section) = returnValue;
-or-
returnValue = BitVector32Object(section);
BitVector32Object(section) = returnValue;

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed Item property whose type is Object and whose index type is String.

Arguments [JScript]

section
[To be supplied.]

Parameters [Visual Basic, C#, C++]

section
[To be supplied.]

See Also

BitVector32 Structure | BitVector32 Members | System.WinForms Namespace | BitVector32.Item Overload List