mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-10 09:56:20 +00:00
feat: add setVisible for Node
This commit is contained in:
parent
dbb95f7212
commit
9e6dffa880
@ -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