Description

Called by McDataNodes.ObjectClipboardData prior to processing.

Syntax

Private Sub object_BeforeObjectClipboardData(pUnknown, lClipFormat, eCancel)

The BeforeObjectClipboardData Event syntax has these parts:

PartDescription
objectA McDataManager object.
pUnknownAn IUnknown object.
lClipFormatA Long value.
eCancelA mcDataCancel enumeration, as described in settings. Fail or bypass (because already implemented) the current entry or all enties of the command.

Settings

The settings for eCancel are:

ConstantValueDescription
 mcdatac_Continue0

VBA.False; Continue as normal.

 mcdatac_AbortWholeCommand-1

(VBA.True) Will rollback when in a transaction.

 mcdatac_IgnoreCurrentEntry-2

Will skip (not process) the single instance on a multi-instance command (Same as mcdatac_AbortWholeCommand for single instance command)

 mcdatac_AlreadyProcessedAll-1

Will skip all remaining instance without processing but will not rollback.

 mcdatac_AlreadyProcessedCurrentEntry0

Will skip all current instance without processing (same as skip but signifies handled).