Ondocumentdeleted, Ondocumentcreated, Onfielddeactivated – Kofax DOKuStar Validation User Manual

Page 52: Onfieldactivated

Advertising
background image

DOKuStar Validation Programming Manual

Page

48

OnDocumentDeleted

Will be fired for any document that gets deleted.

Definition:

Private Sub ctrl_OnDocumentDeleted(ByVal Controller As Controller, ByVal Document As Document)

Parameter

Document

is the document that gets deleted.

OnDocumentCreated

Will be fired for any document that is created.

Definition:

Private Sub ctrl_OnDocumentCreated(ByVal Controller As Controller, ByVal Document As Document)

Parameter

Document

is the document that is created.

OnFieldDeactivated

Will be fired for any field that becomes deactivated.

Definition:

Private Sub ctrl_OnFieldDeactivated(ByVal Controller As Controller, ByVal Field As Field, ByVal
NextField As Field)

Parameter

Field

is the field that becomes deactivated,

NextField

is the one that will become activated next.

OnFieldActivated

Will be fired for any field that gets activated.

Definition:

Private Sub ctrl_OnFieldActivated(ByVal Controller As Controller, ByVal Field As Field, ByVal
PreviousField As Field)

Parameter

Field

is the field that gets the activated,

PreviousField

is the one that will become deactivated.

Advertising