isResizable()

Availability

Adobe Dreamweaver 4.

Description

Determines whether a user can resize a floating panel. If the function is not defined or returns a true value, the user can resize the floating panel. If the function returns a false value, the user cannot resize the floating panel.

Arguments

None.

Returns

Adobe Dreamweaver expects a Boolean value: true if the user can resize the floating panel; false otherwise.

Example

The following example prevents the user from resizing the floating panel:

function isResizable(){ return false;}