Overview
string DocumentmyDocument.Title { get; set; }
Example
Code Block |
---|
|
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'; |
...
Code Block |
---|
|
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'; |