|
You can use the item property to retrieve a setting either by
name or by number. This is the default property of the Effect
object.
For example:
Set theFX = Server.CreateObject("ImageEffects.FX")
Set theDS = theFX( "Twirl" )
Set theSet1 = theDS.Item( 1 )
Set theSet2 = theDS.Item( "Angle" )
Set theSet3 = theDS( 2 )
Set theSet4 = theDS( "Extent" )
|