Question: Which statement could be used in C# to set a ListBox objects selection mode to MultiExtended if you did not have Visual Studios Properties window
Which statement could be used in C# to set a ListBox object’s selection mode to MultiExtended if you did not have Visual Studio’s Properties window available?
The name for the ListBox object is lstBox1.
a. lstBox1.SelectionMode = SelectionMode.MultiExtended;
b. lstBox1 = MultiExtended;
c. SelectionMode = MultiExtended;
d. SelectionMode.MultiExtended;
e. all of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
