DocumentProperties.Application Property
Gets or sets the name of the application used to create or modify the document.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
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, 24.1.7.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
See Also