Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.6
|
Leadtools.Annotations.Core Namespace > AnnObject Class : Reviews Property |
public IList<AnnReview> Reviews {get;}
'Declaration
Public ReadOnly Property Reviews As IList(Of AnnReview)
public Windows.Foundation.Collections.IVector //In WinRT the IListinterface is replaced by IVector <AnnReview> Reviews {get;}
public java.util.List<AnnReview> getReviews()
get_Reviews();
Each AnnObject contains its own list of AnnReview objects that can be used to add review comments and replies to the annotation object. This system is similar to the comments support in application such as Microsoft Word and Adobe Acrobat and can be used to create an application that supports annotation collabaration of multiple users.
The Reviews is a list of objects that is empty by default. The annotations and automations framework do not update this list automatically. Instead, it left to the application. For an example of an implementation, refer to the LEADTOOLS Document Viewer Demo.
AnnReview contains the AnnReviews.Replies list where each item is also an AnnReview, therefore, AnnObject supports a hierarchy of review objects where each item can have replies and each reply can have its own list of replies. The overall representation of AnnReview in an annotation object is a tree where the root is the owner AnnObject itself.
Reviews is serialized and de-serialized with the owner annotation object and hence, it is saved and loaded when the parent AnnContainer is saved and loaded using AnnCodecs.
Refer to AnnReview for more information.