Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.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, 24.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