PopOver

Overview

Creates a pop-over that can extend outside of a window bounds as a floating panel above the control. The pop over is useful for providing ancillary information or to collect non-required information. It can also be used as a tool tip for users as to how to use a program.

Ancestors

  1. Control
  2. Container
 

Descendants

  1. None
 

See Also

  1. None

Constructors

new PopOver
Description

Creates a new PopOver control.

Definition

new PopOver()

Members

height
Description

Gets or sets the height of the pop over.

Definition

Integer popover.height
width
Description

Gets or sets the width of the pop over.

Definition

Integer popover.width

Methods

close()
Description

Closes the pop over.

Definition

popover.close()
open(container, side)
Description

The open method opens the pop over over the control or container specified, with the position provided as a string "left", "right", "top" or "bottom".

Definition

popover.open(container, side)
Parameters
NameTypeDescription
container Container The container or control to place the pop over.. over.
side string The side to present the pop over on, this must be "left", "right", "top" or "bottom".