Skip to main content
A newer version of this page is available. .

AppointmentCustomFieldMappingCollection.Item[String] Property

Provides access to individual items in the collection by their names.

Namespace: DevExpress.XtraScheduler

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

Declaration

public AppointmentCustomFieldMapping this[string name] { get; }

Parameters

Name Type Description
name String

A String value specifying the name of the custom field to get.

Property Value

Type Description
AppointmentCustomFieldMapping

An AppointmentCustomFieldMapping object which represents the custom field mapping with the specified name.

Remarks

This method searches the collection for the custom field mapping whose name matches the parameter’s value, and returns this custom field mapping. If no such object is found the indexer returns null.

See Also