noResize property (frame)
Specifies or returns whether a frame window is resizable.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
HTML page for this property: NORESIZE |
Possible values:
Boolean that indicates whether the frame window is resizeable.
One of the following values:
Default. Frame is resizeable. | |||||||
Frame is not resizeable. |
Default: false.
Example HTML code 1:
This example illustrates the use of the NORESIZE attribute:
|
|||||||
<frameset rows="110, *" frameborder="1"> <frameset cols="*, *" frameborder="1"> <frame src="resizeFrame.htm" /> <frame src="resizeFrame.htm" /> </frameset> <frame src="noresizeFrame.htm" noresize="noresize" /> </frameset> |
|||||||
|
|||||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the noResize property. See the attached toggleResizeFrame.htm file, too.
|
|||||
<frameset rows="*,*,*,*" frameborder="1"> <frame src="toggleResizeFrame.htm" /> <frame src="toggleResizeFrame.htm" /> <frame src="toggleResizeFrame.htm" /> <frame src="toggleResizeFrame.htm" /> </frameset> |
|||||
|
|||||
Did you find this example helpful?
|
Supported by objects:
HTML elements:
External links:
User Contributed Comments