'...
'Create an instance of ImageElement class
Dim imgElem As Neodynamic.SDK.ImageElement
imgElem = Neodynamic.SDK.ImageElement.FromUrl("~/images/night.jpg")
'Create an instance of AdjustHue class
Dim adjHue As New Neodynamic.SDK.AdjustHue()
'Set the Hue angle
adjHue.Angle = 130
'Apply the action on the ImageElement
imgElem.Actions.Add(adjHue)
'Add the ImageElement to the Elements collection of the ImageDraw control
Me.ImageDraw1.Elements.Add(imgElem)
'Add the TextElement to the Elements collection of the ImageDraw control
'...
//...
//Create an instance of ImageElement class
Neodynamic.SDK.ImageElement imgElem = Neodynamic.SDK.ImageElement.FromUrl("~/images/night.jpg");
//Create an instance of AdjustHue class
Neodynamic.SDK.AdjustHue adjHue = new Neodynamic.SDK.AdjustHue();
//Set the Hue angle
adjHue.Angle = 130;
//Apply the action on the ImageElement
imgElem.Actions.Add(adjHue);
//Add the ImageElement to the Elements collection of the ImageDraw controlthis.ImageDraw1.Elements.Add(imgElem);
//Add the TextElement to the Elements collection of the ImageDraw control
//...