allowClipboard property
bool
get
allowClipboard
Gets or sets whether the user may copy to or paste parts from the internal clipboard. This allows use of CommandHandler#cutSelection, CommandHandler#copySelection and CommandHandler#pasteSelection. The initial value is true.
Implementation
_i2.bool get allowClipboard => _i4.getProperty(
this,
'allowClipboard',
);
set
allowClipboard
(bool value)
Implementation
set allowClipboard(_i2.bool value) {
_i4.setProperty(
this,
'allowClipboard',
value,
);
}