DocumentOpenAction Property |
Gets or sets action performed at document opening.
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 21.1
Syntaxpublic IAppointment OpenAction { get; set; }
Public Property OpenAction As IAppointment
Get
Set
public:
property IAppointment^ OpenAction {
IAppointment^ get ();
void set (IAppointment^ value);
}
member OpenAction : IAppointment with get, set
Property Value
Type:
IAppointment
Examples
Example demonstrates how to get CenterWindow flag:
Document document = new Document("sample.pdf");
IAppointment value = document.OpenAction;
See Also