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.
BitVector32 Structure | BitVector32 Members | System.WinForms Namespace | BitVector32.Item Overload List