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

DocumentContentPrintingOptions.ShowTitle Property

OBSOLETE

This property is obsolete now. Use the ShowTitle property exposed by the DashboardPrintPreviewOptions/DashboardPdfExportOptions/DashboardImageExportOptions classes. To learn more, see the following KB article: https://www.devexpress.com/Support/Center/Question/Details/T488406

Gets or sets whether a dashboard title (or dashboard item’s caption) is included as the printed document title.

Namespace: DevExpress.DashboardWin

Assembly: DevExpress.Dashboard.v21.2.Win.dll

NuGet Package: DevExpress.Win.Dashboard

Declaration

[DefaultValue(DefaultBoolean.Default)]
[Obsolete("This property is obsolete now. Use the ShowTitle property exposed by the DashboardPrintPreviewOptions/DashboardPdfExportOptions/DashboardImageExportOptions classes. To learn more, see the following KB article: https://www.devexpress.com/Support/Center/Question/Details/T488406")]
public DefaultBoolean ShowTitle { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

A DefaultBoolean value that specifies whether a dashboard title (or dashboard item’s caption) is included as the printed document title.

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

See Also