Gets or sets an array of objects being designed.

Namespace:  ShinyDesign
Assembly:  ShinyDesign (in ShinyDesign.dll)
Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Object[] SelectedObjects { get; set; }
Visual Basic (Declaration)
Public Property SelectedObjects As Object()
Visual C++
public:
property array<Object^>^ SelectedObjects {
	array<Object^>^ get ();
	void set (array<Object^>^ value);
}

Remarks

The PropertyGridEx control only allows one object to be designed at a time. Consequently, setting this property to an array of more than one object will result in an exception being raised.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeExceptionThrown if value is an array longer than a single item.

See Also