<vizinfo>.expand

Expand the info box

 

<vizinfo>.expand()

 

Remarks

This command will animate the info box expanding, if it is not already expanded. An info box is expanded by default when it is created.

Return Value

None

Example

import vizinfo

info = vizinfo.add('Some information')

#When 's' key is pressed info box will shrink
#When 'e' key is pressed info box will expand
vizact.onkeydown('s', info.shrink)
vizact.onkeydown('e', info.expand)

See also

<vizinfo>.shrink