Click or drag to resize

AnnotationUndo Constructor (Object, String, Object, String, Object, String)

Creates a new instance of AnnotationUndo for methods.

Namespace:  Atalasoft.Annotate.UI
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public AnnotationUndo(
	Object item,
	string undoMethodName,
	Object[] undoMethodParameters,
	string redoMethodName,
	Object[] redoMethodParameters,
	string description
)

Parameters

item
Type: SystemObject
The object where the undo and redo methods exist.
undoMethodName
Type: SystemString
The name of the method called when an undo is performed.
undoMethodParameters
Type: SystemObject
An object array containing the parameters sent to the undo method or null (Nothing in VB) if no parameters are required.
redoMethodName
Type: SystemString
The name of the method called when a redo is performed.
redoMethodParameters
Type: SystemObject
An object array containing the parameters sent to the redo method or null (Nothing in VB) if no parameters are required.
description
Type: SystemString
A string description of this undo action.
See Also