sizingMethod Attribute | sizingMethod

HTML (DHTML)

sizingMethod Attribute | sizingMethod Property

Internet Development Index

Sets or retrieves the manner in which to display an image within the boundary of the object that the AlphaImageLoader filter is applied to.

Syntax

HTML
{ filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
    sizingMethod = sSize ... ) ... }
Scripting
object.filters.item(
    "DXImageTransform.Microsoft.AlphaImageLoader").sizingMethod [ = sSize ]

Possible Values

sSizeString that specifies or receives one of the following values.
cropClips the image to fit the dimensions of the object.
imageDefault. Enlarges or reduces the border of the object to fit the dimensions of the image.
scaleStretches or shrinks the image to fill the borders of the object.

The property is read/write. The property has a default value of image.

Example

This example shows how to use the AlphaImageLoader filter to load an image that is stretched to fill a DIV object's fixed dimensions.

<!-- This DIV is the target container for the filter.  -->
<DIV ID="oDiv" STYLE="position:relative;  width:200px; height:20px;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='../common/earglobe.gif', sizingMethod='scale');" >
The World
</DIV>

Applies To

AlphaImageLoader

See Also

src