Click or drag to resize

SingleActionEditT Constructor

Initializes a new instance of the SingleActionEditT class.

Namespace: Demo3D.Visuals
Assembly: Demo3D.Core (in Demo3D.Core.dll) Version: 19.00.00
Syntax
C#
public SingleActionEdit(
	Document document,
	Visual visual,
	string path,
	Action<T> action,
	T oldValue,
	T newValue
)

Parameters

document  Document
The document containing the visual to be edited.
visual  Visual
The visual being modified.
path  String
The path identifying what is being changed.
action  ActionT
The action to execute with the value.
oldValue  T
The original value before the change.
newValue  T
The new value after the change.
See Also