Search
Appointment.Tag Property
See Also
 





Gets or sets custom data associated with the appointment.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public override Object Tag { get; set; }

Visual Basic  Copy Code

Public Overrides Property Tag As Object

 Property Value

An instance of any class derived from System.Object.

 Remarks

Use this property to store your custom data. The tag can be a value from a primitive data type or a complex object from the .NET class library or a class defined by you. If the tag is an instance of a value type, it will be serialized together with the object containing it when saving / loading the schedule. Reference types are serialized if marked with the [Serializable] attribute or if they implement the ISerializable interface.

 See Also