'...
'Create an instance of ImageElement class
Dim imgElem As Neodynamic.SDK.ImageElement
imgElem = Neodynamic.SDK.ImageElement.FromUrl("~/images/night.jpg")
'Create an instance of Glow class
Dim fxGlow As New Neodynamic.SDK.Glow()
fxGlow.Color = Color.Purple
fxGlow.Softness = 10
'Apply the action on the ImageElement
imgElem.Actions.Add(fxGlow)
'Add the ImageElement to the Elements collection of the ImageDraw control
Me.ImageDraw1.Elements.Add(imgElem)
'...
//...
//Create an instance of ImageElement class
Neodynamic.SDK.ImageElement imgElem = Neodynamic.SDK.ImageElement.FromUrl("~/images/night.jpg");
//Create an instance of Glow class
Neodynamic.SDK.Glow fxGlow = new Neodynamic.SDK.Glow();
fxGlow.Color = Color.Purple;
fxGlow.Softness = 10;
//Apply the action on the ImageElement
imgElem.Actions.Add(fxGlow);
//Add the ImageElement to the Elements collection of the ImageDraw controlthis.ImageDraw1.Elements.Add(imgElem);
//...