Skip to main content
Row

DocumentProperties.Application Property

Gets or sets the name of the application used to create or modify the document.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

string Application { get; set; }

Property Value

Type Description
String

The application name.

Remarks

If you create or modify a workbook in code - or via the Spreadsheet control’s UI - and do not specify the Application property, the Spreadsheet assigns the following string to this property: DevExpress Office File API/X.Y.Z.0. In this instance, X.Y.Z is the DevExpress build number (for example, 23.2.5.0).

Specify the Application Value

workbook.DocumentProperties.Application = "My Application v1.0.0.0";
workbook.DocumentProperties.Version = "1.0";

Important

The Application property string is limited to 255 characters.

Clear the Application Value

workbook.DocumentProperties.Application = "";
See Also