Gets value that indicates if the collection is empty or not. If collection is empty than it will be skipped during the serialization process.

Namespace:  C1.Web.UI.Controls.C1ComboBox
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
public bool IsEmpty { get; }
Visual Basic (Declaration)
Public ReadOnly Property IsEmpty As Boolean
	Get

Examples

Copy CodeC#
C1ComboBox comboBox = new C1ComboBox();
bool b = comboBox.Items.IsEmpty;
// b == true;

See Also