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

WizardControl.AllowHtmlText Property

Gets or sets whether HTML formatting tags can be used to format the text in wizard pages.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v19.2.dll

Declaration

[DefaultValue(false)]
[DXCategory("Appearance")]
public bool AllowHtmlText { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if HTML formatting tags can be used to format text in wizard pages; otherwise, false.

Remarks

You can display textual information within the wizard’s Welcome Page (the WelcomeWizardPage.Text, WelcomeWizardPage.IntroductionText and BaseWelcomeWizardPage.ProceedText properties), Interior Page (the WizardPage.Text and WizardPage.DescriptionText properties) and Completion Page (the CompletionWizardPage.Text, CompletionWizardPage.FinishText and CompletionWizardPage.ProceedText properties).

Text within these wizard pages can be formatted using predefined HTML tags. Set the AllowHtmlText property to true to enable this feature. For detailed information on supported HTML tags, see the HTML Text Formatting topic.

See Also