vc. NumberAttrib = _
vc. NumberAttrib Or VC_ATTR_PARENS
To set two number attributes without disturbing the others, use a logical construct of the following form:
vc.NumberAttrib = _
vc.NumberAttrib Or VC_ATTR_PARENS Or VC_ATTR_PUNCTUATED
To unset a number attribute without disturbing the others, use a logical construct of the following form:
vc.NumberAttrib = _
vc.NumberAttrib And (Not VC_ATTR_PARENS)
To unset two number attributes without disturbing the others, use a logical construct of the following form:
vc.NumberAttrib = _
vc.NumberAttrib And (Not (VC_ATTR_PARENS Or VC_ATTR_PUNCTUATED))