Class AppointmentData
Represents an appointment in RadzenScheduler<TItem>
Inheritance
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class AppointmentData : object
Properties
Data
Gets or sets the data associated with the appointment
Declaration
public object Data { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The data. |
End
Gets or sets the end of the appointment.
Declaration
public DateTime End { get; set; }
Property Value
Type | Description |
---|---|
DateTime | The end. |
Start
Gets or sets the start of the appointment.
Declaration
public DateTime Start { get; set; }
Property Value
Type | Description |
---|---|
DateTime | The start. |
Text
Gets or sets the text of the appointment.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text. |
Methods
Equals(Object)
Determines whether the specified object is equal to this instance. Used to check if two appointments are equal.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The object to compare with this instance. |
Returns
Type | Description |
---|---|
System.Boolean |
|
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. |