corelibraries-devexpress-dot-xtraprinting-dot-document-13b3cbd4.md
Specifies the document name.
Namespace : DevExpress.XtraPrinting
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
public string Name { get; set; }
Public Property Name As String
| Type | Description |
|---|---|
| String |
A String value.
|
This name is displayed in the Save File dialog window and is used as a file name on document export.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Name property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
Message = "Mail was sent successfully",
DocumentId = printingSystemWithEditingFields.Document.Name
};
.Message = "Mail was sent successfully",
.DocumentId = printingSystemWithEditingFields.Document.Name
}
See Also