Table of Contents

Class AppointmentData

Namespace
Radzen.Blazor
Assembly
Radzen.Blazor.dll

Represents an appointment in RadzenScheduler<TItem>

public class AppointmentData
Inheritance
AppointmentData
Inherited Members

Constructors

AppointmentData()

public AppointmentData()

Properties

Data

Gets or sets the data associated with the appointment

public object Data { get; set; }

Property Value

object

The data.

End

Gets or sets the end of the appointment.

public DateTime End { get; set; }

Property Value

DateTime

The end.

Start

Gets or sets the start of the appointment.

public DateTime Start { get; set; }

Property Value

DateTime

The start.

Text

Gets or sets the text of the appointment.

public string Text { get; set; }

Property Value

string

The text.

Methods

Equals(object)

Determines whether the specified object is equal to this instance. Used to check if two appointments are equal.

public override bool Equals(object obj)

Parameters

obj object

The object to compare with this instance.

Returns

bool

true if the specified is equal to this instance; otherwise, false.

GetHashCode()

Returns a hash code for this instance.

public override int GetHashCode()

Returns

int

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.