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

XRPageInfo.TextFormatString Property

Specifies the control’s format.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v17.2.dll

NuGet Package: DevExpress.Reporting.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 system date and time and specify the output format.

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