DhWindowInfo Class
DhWindowInfo Class
This Package | All Packages
public class DhWindowInfo
Sets the features for a new browser window. For more information, see DhWindow.open.
Fields
Name |
Description |
isResizable
|
Informs the browser to open a new window and make it resizable using resize handles. |
showChannelMode
|
Informs the browser to open a new window in theatre mode and show the channel band. |
showDirectoryButtons
|
Informs the browser to open a new window and add directory buttons. |
showFullScreen
|
Informs the browser to open a new window using the full screen as size. |
showLocation
|
Informs the browser to open a new window and display the input field for entering URLs directly into the browser. |
showMenubar
|
Informs the browser to open a new window with the menu bar showing. |
showScrollbars
|
Informs the browser to open a new window with the scroll bars showing. |
showStatusbar
|
Informs the browser to open a new window with the status bar showing. |
showToolbar
|
Informs the browser to open a new window with toolbars showing. |
size
|
Informs the browser to open a new window using the rectangle as the size. |
Constructors
Methods
Name |
Description |
addFeature(String name, String value)
|
Adds a new custom feature. |
getValue(String name)
|
Retrieves the value of the custom feature. |
removeFeature(String name)
|
Removes a custom feature. |
toString()
|
Topic under construction. |
Fields
Syntax
public boolean isResizable;
Description
Informs the browser to open a new window and make it resizable using resize handles. This is used by DhWindow.open().
Syntax
public boolean showChannelMode;
Description
Informs the browser to open a new window in theatre mode and show the channel band. This is used by DhWindow.open().
Syntax
public boolean showDirectoryButtons;
Description
Informs the browser to open a new window and add directory buttons. This is used by DhWindow.open().
Syntax
public boolean showFullScreen;
Description
Informs the browser to open a new window using the full screen as size. This is used by DhWindow.open().
Syntax
public boolean showLocation;
Description
Informs the browser to open a new window and display the input field for entering URLs directly into the browser. This is used by DhWindow.open().
Syntax
public boolean showMenubar;
Description
Informs the browser to open a new window with the menu bar showing. This is used by DhWindow.open().
Syntax
public boolean showScrollbars;
Description
Informs the browser to open a new window with the scroll bars showing. This is used by DhWindow.open().
Syntax
public boolean showStatusbar;
Description
Informs the browser to open a new window with the status bar showing. This is used by DhWindow.open().
Syntax
public boolean showToolbar;
Description
Informs the browser to open a new window with toolbars showing. This is used by DhWindow.open().
Syntax
public Rectangle size;
Description
Informs the browser to open a new window using the rectangle as the size. This is used by DhWindow.open().
Constructors
public DhWindowInfo();
Description
Topic under construction.
public DhWindowInfo( Rectangle size );
Description
Topic under construction.
Methods
Syntax
public void addFeature( String name, String value );
Parameters
- name
- The name of the custom feature.
- value
- The value of the custom feature.
Description
Adds a new custom feature.
Syntax
public String getValue( String name );
Parameters
- name
- The name of the custom feature.
Description
Retrieves the value of the custom feature.
Syntax
public void removeFeature( String name );
Parameters
- name
- The name of the custom feature.
Description
Removes a custom feature.
Syntax
public String toString();
Description