[]
        
(Showing Draft Content)

AppAboutSettings

Type Alias: AppAboutSettings

type AppAboutSettings = object;

Properties

applicationTitle

applicationTitle: string;

Application title

Examples

// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer) => {
	designer.app.about.applicationTitle = 'Title text';
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer) => {
	designer.app.about.applicationTitle = 'Title text';
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
	designer.app.about.applicationTitle = 'Title text';
});

applicationTitleCompact

applicationTitleCompact: string;

A compact version of the application title

Examples

// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer) => {
	designer.app.about.applicationTitleCompact = 'Example text';
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer) => {
	designer.app.about.applicationTitleCompact = 'Example text';
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
	designer.app.about.applicationTitleCompact = 'Example text';
});

applicationVersion

applicationVersion: string;

Application version

Examples

// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer) => {
	designer.app.about.coreVersion = '1.2.3';
	designer.app.about.applicationVersion = '3.4.5';
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer) => {
	designer.app.about.coreVersion = '1.2.3';
	designer.app.about.applicationVersion = '3.4.5';
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
	designer.app.about.coreVersion = '1.2.3';
	designer.app.about.applicationVersion = '3.4.5';
});

coreVersion

coreVersion: string;

Designer Core version an application is based on

Examples

// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer) => {
	designer.app.about.coreVersion = '1.2.3';
	designer.app.about.applicationVersion = '3.4.5';
});
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer) => {
	designer.app.about.coreVersion = '1.2.3';
	designer.app.about.applicationVersion = '3.4.5';
});
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
	designer.app.about.coreVersion = '1.2.3';
	designer.app.about.applicationVersion = '3.4.5';
});