asp.net.ph

Skip Navigation Links

clipBottom Property

DHTML Object Properties   DHTML Objects


Retrieves the bottom coordinate of the object clipping region.

Syntax

HTML N/A
Script [ sBottom = ] currentStyle.clipBottom

Possible Values

auto Clip to expose the entire object.
sTop Length value, which may have a units designator ( px, pt, em, cm, mm, or in ) appended.

The property is read-only with no default value.

Remarks

Setting the value to auto exposes the bottom side, meaning the side is not clipped.

Example

The following example demonstrates reading the clipBottom property off the currentStyle object of an image.

<script language="JavaScript">
function setClip ( sOptionValue ) {
oImage.style.clip="rect ( 0,100," +sOptionValue+ ",0 )";
if ( oImage.currentStyle.clipBottom == "60px" ) {
  alert ( "The image has been clipped to 60px." );
  }
:
} </script>
...
<img id=oImage src="imgs/sphere.jpg">
:
Pick an amount to clip the bottom: 
// the option value is sent as an argument...
<select onchange="setClip ( value )">
<option VALUE=100>reset </option>
<option VALUE=40>40px </option>
<option VALUE=50>50px </option>
<option VALUE=60>60px </option>
</select>

 Show me 

See Also

clip, clipTop, clipLeft, clipRight


Need a break ?
Suggested Reading

Check out related books at Amazon

© 2025 Reynald Nuñez and asp.net.ph.

If you have any question, comment or suggestion,
please send us a note