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

LabelMappingInfo.MenuCaptionConversionBehavior Property

Gets or sets a value converter for the Label’s UserInterfaceObject.MenuCaption property.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.2.dll

Declaration

[Browsable(false)]
public MappingConversionBehavior MenuCaptionConversionBehavior { get; set; }

Property Value

Type Description
MappingConversionBehavior

A MappingConversionBehavior enumeration value that specifies the position between the mapping, the data source and the object’s property.

Available values:

Name Description
BetweenFieldAndMapping

Processes data coming from a data field to the data conversion procedure inherent for default mapping (Convert method) and data coming from default mapping to the data field (ConvertBack method).

BetweenMappingAndProperty

Processes data coming from the procedure inherent for default mapping to the object’s property (Convert method) and data coming from the object’s property to the related mapping (ConvertBack method).

InPlaceOfMapping

Processes data coming from the data field to the object’s property (Convert method) and data coming from the object’s property to the data field (ConvertBack method). Default mapping procedures are bypassed.

See Also