Leadtools.Windows.Annotations Namespace : AnnImageObject Class |
public class AnnImageObject : AnnRectangleObject, IAnnHeader, IAnnImage, IAnnObject, IAnnPicture, IAnnRectangle
'Declaration Public Class AnnImageObject Inherits AnnRectangleObject Implements IAnnHeader, IAnnImage, IAnnObject, IAnnPicture, IAnnRectangle
'Usage Dim instance As AnnImageObject
public sealed class AnnImageObject : IAnnHeader, IAnnImage, IAnnObject, IAnnPicture, IAnnRectangle
function Leadtools.Windows.Annotations.AnnImageObject()
public ref class AnnImageObject : public AnnRectangleObject, IAnnHeader, IAnnImage, IAnnObject, IAnnPicture, IAnnRectangle
The AnnStampObject class inherits the AnnImageObject class and access the common Picture property through this inheritance. For more information, refer to Using Pictures in WPF Annotation Objects
For XAML example, refer to AnnHotspotObject.
Private Sub AnnImageObject_AnnImageObject(ByVal container As AnnContainer, ByVal imageFileName As String) Dim img As AnnImageObject = New AnnImageObject() Dim pic As AnnPicture = New AnnPicture(New BitmapImage(New Uri(imageFileName))) pic.TransparentMode = AnnTransparentMode.None pic.TransparentColor = Colors.Black img.Picture = pic img.Rect = New Rect(100, 200, 400, 600) container.Children.Add(img) End Sub
private void AnnImageObject_AnnImageObject(AnnContainer container, string imageFileName) { AnnImageObject img = new AnnImageObject(); AnnPicture pic = new AnnPicture(new BitmapImage(new Uri(imageFileName))); pic.TransparentColor = Colors.Black; pic.TransparentMode = AnnTransparentMode.None; img.Rect = new Rect(100, 200, 400, 600); img.Picture = pic; container.Children.Add(img); }
private void AnnImageObject_AnnImageObject(AnnContainer container, string imageFileName) { AnnImageObject img = new AnnImageObject(); AnnPicture pic = new AnnPicture(new BitmapImage(new Uri(imageFileName))); pic.TransparentColor = Colors.Black; pic.TransparentMode = AnnTransparentMode.None; img.Rect = new Rect(100, 200, 400, 600); img.Picture = pic; container.Children.Add(img); }
Private Sub AnnImageObject_AnnImageObject(ByVal container As AnnContainer, ByVal imageFileName As String) Dim img As AnnImageObject = New AnnImageObject() Dim pic As AnnPicture = New AnnPicture(New BitmapImage(New Uri(imageFileName))) pic.TransparentColor = Colors.Black pic.TransparentMode = AnnTransparentMode.None img.Rect = New Rect(100, 200, 400, 600) img.Picture = pic container.Children.Add(img) End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2