Defines an annotation sticky note object.
public class AnnStickyNoteObject : AnnObject
Public Class AnnStickyNoteObject
Inherits AnnObject
Implements IAnnObjectCloneable
@interface LTAnnStickyNoteObject : LTAnnObject<NSCoding,NSCopying>
public class AnnStickyNoteObject extends AnnObject
public:
ref class AnnStickyNoteObject : AnnObject
The sticky note object is a Picture rendered around single point (the center). This point is the first entry in the Points collection and all others are ignored. This object does not support fill, stroke nor font.
This object supports using the AnnObject.SelectionStroke and by default when the value of IsSelected is true, it will use the stroke to draw a rectangle around the image instead of using a selection thumb.
With the automated functions, in design mode, the sticky point object is formed with a click or tap event.
Programmatically, the boundaries and location of the sticky note object can be controlled using the following properties:
Each object can be transformed with the following methods:
The AnnStickyNoteObject class inherits a number of properties from the AnnObject class, it does not support fill, stroke or font by overrides SupportsSelectionStroke to return true.
The name of the sticky note object can be controlled using Labels property, inherited from the AnnObject class.
An object can be part of a group annotation object or part of a container object. It cannot be part of both a group and a container at the same time.
The following properties can also be used to programmatically set characteristics of an AnnStickyNoteObject:
using LeadtoolsExamples.Common;
using Leadtools.Annotations.Automation;
using Leadtools.Annotations.Engine;
using Leadtools.Codecs;
using Leadtools.Annotations.WinForms;
public void AnnCore_AnnStickyNoteObject()
{
// assumes _automation is valid
// Create a new instance of AnnResources if the container does not already have one
AnnResources resources = _automation.Manager.Resources;
if (resources == null)
{
resources = new AnnResources();
}
// Get the images collection
IList<AnnPicture> imagesResources = resources.Images;
// Add our picture to it
imagesResources.Add(new AnnPicture(@"ms-appx:///Assets/StickyNote.png"));
int pictureIndex = imagesResources.Count - 1;
double inch = 720.0;
// Add a Sticky Note object
AnnStickyNoteObject stickyNoteObj = new AnnStickyNoteObject();
// Set the points for the Sticky Note
stickyNoteObj.Points.Add(LeadPointD.Create(1 * inch, 1 * inch));
stickyNoteObj.Points.Add(LeadPointD.Create(2 * inch, 1 * inch));
stickyNoteObj.Points.Add(LeadPointD.Create(2 * inch, 2 * inch));
stickyNoteObj.Points.Add(LeadPointD.Create(1 * inch, 2 * inch));
// Set the picture
stickyNoteObj.DefaultPicture = pictureIndex;
// Set the MetaData
stickyNoteObj.Metadata[AnnObject.ContentMetadataKey] = "This is content";
stickyNoteObj.Metadata[AnnObject.AuthorMetadataKey] = Environment.UserName;
stickyNoteObj.Metadata[AnnObject.CreatedMetadataKey] = DateTime.Now.ToString();
// Add the object to the automation container
_automation.Container.Children.Add(stickyNoteObj);
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document