isLinkLabel property
bool
get
isLinkLabel
This read-only property is true when this Node is a label node for a Link.
If this is true, then n.labeledLink
will be a Link and n.labeledLink.isLabeledLink
will be true.
Implementation
_i2.bool get isLinkLabel => _i4.getProperty(
this,
'isLinkLabel',
);
set
isLinkLabel
(bool value)
Implementation
set isLinkLabel(_i2.bool value) {
_i4.setProperty(
this,
'isLinkLabel',
value,
);
}