Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SelectLabelTypePage Class

Implements the Select Label Type section of the Report Wizard’s Specify Page Settings (Label) page.

#Declaration

TypeScript
export class SelectLabelTypePage extends WizardPageBase

#Remarks

You can customize this section or remove it from the Specify Page Settings page. To identify this section in code, use the FullscreenReportWizardSectionId.SelectLabelTypePage value.

See the following topics for more information:

#Inheritance

#constructor

Initializes a new instance of the SelectLabelTypePage class.

#Declaration

TypeScript
constructor()

#Methods

#canFinish Method

Specifies whether it is possible to finish the wizard.

#Declaration

TypeScript
canFinish(): boolean

#Returns

Type Description
boolean

true, it is possible to finish the wizard; otherwise, false.

#canNext Method

#Declaration

TypeScript
canNext(): boolean

#Returns

Type
boolean

#commit Method

Commits settings to the local page state.

#Declaration

TypeScript
commit(): JQuery.Promise<{
    labelDetails: DevExpress.Reporting.Designer.Wizard.ILabelDetails;
}, any, any>

#Returns

Type Description
Promise<{labelDetails: ILabelDetails},any,any>

A JQuery Promise object that identifies whether the commit succeeded.

#initialize(state) Method

Initializes the section with the specified settings.

#Declaration

TypeScript
initialize(state: DevExpress.Reporting.Designer.Wizard.IReportWizardState): JQueryPromise<{
    labelProducts: DevExpress.Reporting.Designer.Wizard.ILabelProduct[];
    paperKinds: DevExpress.Reporting.Designer.Wizard.IPaperKind[];
    labelDetails: DevExpress.Reporting.Designer.Wizard.ILabelDetails[];
}>

#Parameters

Name Type Description
state IReportWizardState

The section’s state.

#Returns

Type Description
JQueryPromise<{labelDetails: ILabelDetails[], labelProducts: ILabelProduct[], paperKinds: IPaperKind[]}>

A JQuery Promise object that identifies whether section initialization succeeded.