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

XRPageInfo.TextFormatString Property

Specifies the output format for the control’s bound value (provided by the applied expression, data binding or summary).

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Core

Declaration

[Browsable(true)]
public override string TextFormatString { get; set; }

Property Value

Type Description
String

A string that specifies the control’s format.

Remarks

When the UserDesignerOptions.DataBindingMode is set to DataBindingMode.Expressions or DataBindingMode.ExpressionsAdvanced, use the TextFormatString property to specify the control’s format.

The following code snippet demonstrates how to display the current date and time and specify the output format.

//...
xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
xrPageInfo1.TextFormatString = "{0:MMMM d, yyyy}";
See Also