Document.Title
Overview
Gets or sets the title of document.
string myDocument.Title { get; set; }
Example
var doc = $Documents.New('My Document');
doc.Files.AddPDF('<p>Hello</p>', 'report.pdf');
// Checking the title of a document. Currently, title is 'My Document':
var title = doc.Title;
// Changing the title of a document to 'Sample Document':
doc.Title = 'Sample Document';
Copyright © 2010 - 2023 Emakin. All rights reserved.