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

iCalendarComponentBase.CustomProperties Property

Provides access to a collection of custom properties for a calendar component.

Namespace: DevExpress.XtraScheduler.iCalendar.Components

Assembly: DevExpress.XtraScheduler.v20.2.Core.Desktop.dll

NuGet Packages: DevExpress.Scheduler.CoreDesktop, DevExpress.WindowsDesktop.Scheduler.CoreDesktop

Declaration

public iCalendarPropertyCollection CustomProperties { get; }

Property Value

Type Description
iCalendarPropertyCollection

An iCalendarPropertyCollection object representing a collection of custom properties.

Remarks

To add a property which is not implemented in the VEvent object, create a new TextProperty object, specify its parameters, and add it to the collection of custom properties via the Add method of a CustomProperties collection.

Tip

A complete sample project is available in the DevExpress Code Examples database at https://supportcenter.devexpress.com/ticket/details/e2437/how-to-extend-text-properties-of-appointments-exported-to-icalendar-format.

See Also