# AppAboutSettings

## Content

# Type Alias: AppAboutSettings

```ts
type AppAboutSettings = object;
```

## Properties

### applicationTitle

```ts
applicationTitle: string;
```

Application title

#### Examples

```javascript
// 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';
});
```

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

```typescript
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
	designer.app.about.applicationTitle = 'Title text';
});
```

***

### applicationTitleCompact

```ts
applicationTitleCompact: string;
```

A compact version of the application title

#### Examples

```javascript
// 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';
});
```

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

```typescript
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rpx: { enabled: true },
	appBar: { openButton: { visible: true } }
}).then((designer: DesignerAPI) => {
	designer.app.about.applicationTitleCompact = 'Example text';
});
```

***

### applicationVersion

```ts
applicationVersion: string;
```

Application version

#### Examples

```javascript
// 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';
});
```

```javascript
// 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';
});
```

```typescript
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

```ts
coreVersion: string;
```

Designer Core version an application is based on

#### Examples

```javascript
// 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';
});
```

```javascript
// 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';
});
```

```typescript
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';
});
```
