ApplicationWindowKey

class HPS.ApplicationWindowKey : public HPS.WindowKey

The ApplicationWindowKey class is a smart pointer to a database object. It is a handle to an application window Visualize can draw into.

Public Functions

ApplicationWindowKey ()

The default constructor creates an uninitialized ApplicationWindowKey object. The Type() function will return Type.None.

ApplicationWindowKey (HPS.ApplicationWindowKey in_that)

The copy constructor creates a ApplicationWindowKey object that shares the underlying smart-pointer of the source ApplicationWindowKey.

Param in_that

The source ApplicationWindowKey to copy.

ApplicationWindowKey (HPS.Key in_key)

The copy constructor creates an ApplicationWindowKey object that shares the underlying smart-pointer of the source Key. The copy will only be successful if the source key is really an upcast of an application window. Otherwise the copy will fail and the resulting ApplicationWindowKey will be invalid.

Param in_key

The source Key to copy.

override void Dispose ()
HPS.ApplicationWindowOptionsControl GetWindowOptionsControl ()

Gets a control that allows querying options specific to application windows.

Return

A control that allows querying options specific to application windows.

override HPS.Type ObjectType ()

This function returns the type the object, as declared (if the object is derived, this does not give the true type of the derived object).

Return

The declared type of the object in question, which may differ from the true, underlying type.

bool ShowWindowOptions (out HPS.ApplicationWindowOptionsKit out_kit)

Shows the application-window-specific options for this ApplicationWindowKey.

Param out_kit

The application-window-specific options for this ApplicationWindowKey.

Return

true if any options are set, false otherwise.