Skip to main content

Appointment.GetValue(SchedulerStorageBase, String) Method

Obtains the value of the specific field in the current appointment data record supplied by the specified storage object.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v14.2.Core.dll

#Declaration

public override object GetValue(
    SchedulerStorageBase storage,
    string columnName
)

#Parameters

Name Type Description
storage SchedulerStorageBase

A SchedulerStorage instance that provides data for the appointment.

columnName String

A String that is the data field's name.

#Returns

Type Description
Object

A Object that is the field's contents.

#Remarks

Use the GetValue method to get the value of the arbitrary data field in the record for the current appointment.

This method can be used to obtain the appointment's unique identifier from the corresponding field of the data source. If the unique identifier is contained in the "ID" column of the data table, specify the "ID" string as the column name.

See Also