Interface ILookUpObject
Defines items that can be included in a ILookUpObjectList.
Namespace: Syncfusion.Schedule
Assembly: Syncfusion.Schedule.Base.dll
Syntax
public interface ILookUpObject
Remarks
Choice lists within the ScheduleControl are used to provide possible schedule item information like location or a reminder. ILookUpObject allows such list items to have a ValueMember/DisplayMember associated with the choices as well as a color that will be used in dropdowns showing these lists. Value members are normally the values serialized to data stores.
Properties
ColorMember
Gets or sets a color associated with this item.
Declaration
Color ColorMember { get; set; }
Property Value
Type |
---|
System.Drawing.Color |
DisplayMember
Gets or sets the display member associated with this item.
Declaration
string DisplayMember { get; set; }
Property Value
Type |
---|
System.String |
ValueMember
Gets or sets a value member associated with this item.
Declaration
int ValueMember { get; set; }
Property Value
Type |
---|
System.Int32 |