Skip to main content

visible

Whether the widget is shown. true shows it and false hides it. This property is both readable and writable, and it defaults to shown (true).

info

This is a Widget Control that every widget shares. The widgetID in the examples below is the name (ID) you assigned to the widget on the canvas, and in scripts you access members in the form widgetID.member.

  • Type: boolean
  • Access: Read / write

Example

imgID.visible = false;
if (imgID.visible) { /* ... */ }