op.appPrefsChanged

From PDF XChange PDF SDK
Jump to: navigation, search
 
Line 21: Line 21:
 
| Not yet implemented.
 
| Not yet implemented.
 
|}
 
|}
 +
 +
== Sample ==
 +
<pre class="brush:c#">//C#
 +
private void AppPrefsChanged(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
 +
{
 +
int nID = Inst.Str2ID("op.appPrefsChanged", false);
 +
PDFXEdit.IOperation Op = Inst.CreateOp(nID);
 +
Op.Do();
 +
}
 +
</pre>

Latest revision as of 07:27, 15 April 2016


Overview

The operation fires an event with changes made to the application preferences.

Parameters

Name Type Description
Input Array Not yet implemented.
Output Array Not yet implemented.

Sample

//C#
private void AppPrefsChanged(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.appPrefsChanged", false);
	PDFXEdit.IOperation Op = Inst.CreateOp(nID);
	Op.Do();
}