officefileapi-devexpress-dot-spreadsheet-dot-documentproperties-746b59cb.md
Gets or sets the name of the application used to create or modify the document.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
string Application { get; set; }
Property Application As String
| Type | Description |
|---|---|
| String |
The application name.
|
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, 25.2.5.0).
workbook.DocumentProperties.Application = "My Application v1.0.0.0";
workbook.DocumentProperties.Version = "1.0";
workbook.DocumentProperties.Application = "My Application v1.0.0.0"
workbook.DocumentProperties.Version = "1.0"
Important
The Application property string is limited to 255 characters.
workbook.DocumentProperties.Application = "";
workbook.DocumentProperties.Application = ""
See Also