Hi,
How to programmatically change the image stamp?
When i create a stamp i do this:
Image image = new Image();
image.Source = "image.png";
Point tappedPoint = new Point();
tappedPoint.Y = Convert.ToDouble(100);
tappedPoint.X = Convert.ToDouble(100);
pdfViewerControl.AddStamp(image, 1, tappedPoint);
According to a certain condition i just need to change the image without having to re-create the stamp.
I need to find a stamp by name through a button and change the image.
Thanks.