op.appPrefsChanged

From PDF XChange PDF SDK
Jump to: navigation, search


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();
}