Question Multiple selection rules

Pirahnaplant

Well-known member
Joined
Mar 29, 2009
Messages
75
Programming Experience
3-5
In the designer for a control, I am overriding the selection rules property. I would like to make it so that there are multiple selection rules such as sizable from left and right.
 
help said:
SelectionRules Enumeration, This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
VB.NET:
Dim rules As SelectionRules = SelectionRules.LeftSizeable Or SelectionRules.RightSizeable
 
Back
Top