commandHandler property
CommandHandler
get
commandHandler
Gets or sets the CommandHandler for this Diagram.
This is set to a new instance of CommandHandler on Diagram instantiation.
Setting this property does not notify about any changed event. The value cannot be null and must not be shared with other Diagrams.
Implementation
_i3.CommandHandler get commandHandler => _i4.getProperty(
this,
'commandHandler',
);
set
commandHandler
(CommandHandler value)
Implementation
set commandHandler(_i3.CommandHandler value) {
_i4.setProperty(
this,
'commandHandler',
value,
);
}