ArchiveFilter.StatusBit



StatusBit() As Long
ED
not used
RT
avaliable

Remarks

Gets or sets the value of the relevant state bits.

Hint: For further information on state bits, please have a look at the ReaStatusStd part within the "State" object.

Samples


	'No state bit filtering -> Default
	zArvFilter.StatusMask = 0		 'Check none of the states
	zArvFilter.StatusBit = 0			'"StatusBit" doesn't matter

	'All I-BIT bits
	zArvFilter.StatusMask = &H40000	 'Check only I-BIT
	zArvFilter.StatusBit = &H40000	'Return data if I-BIT is TRUE

	'All states, except I-BIT bits
	zArvFilter.StatusMask = Not &H40000 'Check all states without I-BIT
	zArvFilter.StatusBit = &HFFFFFFFF   'Return data if any of the other bits is TRUE

	'All I-BIT and HWERT bits
	zArvFilter.StatusMask = &H41000	 'Check only I-BIT + HWERT
	zArvFilter.StatusBit = &H41000	'Return data if one of those bits is TRUE or both

	'All states, except I-BIT + HWERT bits
	zArvFilter.StatusMask = Not &H41000  'Check all states without I-BIT + HWERT
	zArvFilter.StatusBit = &HFFFFFFFF	'Return data if any of the other bits is TRUE


See Also

ArchiveFilter