Skip to main content

CustomFieldCollection.Item[String] Property

Gets the value stored for the custom field specified by the custom field name.

Namespace: DevExpress.XtraScheduler

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

NuGet Package: DevExpress.Scheduler.Core

Declaration

public virtual object this[string name] { get; set; }

Parameters

Name Type Description
name String

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

Property Value

Type Description
Object

A Object which represents the value of the custom field with the specified name.

Remarks

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

See Also