enabled Attribute | Enabled

HTML (DHTML)

enabled Attribute | Enabled Property

Internet Development Index

Sets or retrieves a value that indicates whether the filter is enabled.

Syntax

HTML
{ filter:progid:DXImageTransform.Microsoft.filter-name(
    enabled = bEnabled ... ) ... }
Scripting
object.filters.item(
    "DXImageTransform.Microsoft.filter-name").Enabled [ = bEnabled ]

Possible Values

bEnabledBoolean that specifies or receives one of the following values.
trueDefault. Filter is enabled.
falseFilter is disabled.

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

Example

This example uses the Enabled property to change the orientation of an image when the user moves the mouse pointer across one of the image's borders.

<IMG ID="image1" SRC="../common/earglobe.gif"
onmouseover="image1.filters.flipv.enabled = false;"
onmouseout ="image1.filters.flipv.enabled = true;"
STYLE="filter:progid:DXImageTransform.Microsoft.MotionBlur(STRENGTH=50) flipv()">

Applies To

Alpha, AlphaImageLoader, Barn, BasicImage, Blinds, Blur, MotionBlur, BlendTrans, Chroma, DropShadow, Emboss, Engrave, Fade, FlipH, FlipV, Glow, Gradient, GradientWipe, Gray, Inset, Iris, Invert, Light, MaskFilter, Matrix, Pixelate, RadialWipe, RandomBars, RandomDissolve, Redirect, RevealTrans, Shadow, Slide, Spiral, Stretch, Strips, Wave, Wheel, Xray, Zigzag