Initializing help system before first use

Hidden

Hidden


Purpose
Possible values of whether the UI should hide an entity where appropriate.
Synopsis
class xi.Hidden(Enum)
Arguments
xi.Hidden.ALWAYS 
Indicates that the UI should hide the entity always.
xi.Hidden.TRUE 
Indicates that the UI should hide the entity where appropriate.
xi.Hidden.FALSE 
Indicates that the UI should show the entity where appropriate.
Example
Always hide an entity in the Insight UI
>>> MyInteger: xi.Scalar(dtype=xi.integer,
...                      alias='My Integer',
...                      hidden=xi.Hidden.ALWAYS)