IPXC_DocumentInfo::SetModificationDate Method

From PDF XChange PDF SDK
Revision as of 02:25, 16 March 2016 by Palamar (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT SetModificationDate([in]  DATE  nDate);

Parameters

nDate
[in] Value of DATE containing the document's modification date.

Return Value

Returns S_OK if operation was successful or error code in other cases.

Sample

//C#
private void SetDate(PDFXEdit.IPXC_Document Doc)
{
	//Setting modification date as current date without hours
	destDoc.Info.SetModificationDate(DateTime.Today);
}

See Also

IPXC_DocumentInfo