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 (Int32)

Sets or checks that ALL the bits specfied are set.

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

[Visual Basic]
Overloads Public Default Property Item( _
   ByVal bit As Integer _
) As Boolean
[C#]
public bool this[
   int bit
] {get; set;}
[C++]
public: __property bool get_Item(
   int bit
);
public: __property void set_Item(
   int bit,
   bool
);
[JScript]
returnValue = BitVector32Object.Item(bit);
BitVector32Object.Item(bit) = returnValue;
-or-
returnValue = BitVector32Object(bit);
BitVector32Object(bit) = 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]

bit
[To be supplied.]

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

bit
[To be supplied.]

See Also

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