mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-28 05:48:14 +00:00
feat: add setVisible for Node
This commit is contained in:
parent
a9a118fe6e
commit
ba90327eac
@ -306,6 +306,10 @@ export default class Node {
|
|||||||
return this[nodeSymbol].getVisible();
|
return this[nodeSymbol].getVisible();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setVisible(flag: boolean) {
|
||||||
|
this[nodeSymbol].setVisible(flag);
|
||||||
|
}
|
||||||
|
|
||||||
isConditionalVisible() {
|
isConditionalVisible() {
|
||||||
return this[nodeSymbol].isConditionalVisible();
|
return this[nodeSymbol].isConditionalVisible();
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user