←Select platform

Metadata Property

Summary

Gets the metadata associated with this object.

Syntax

C#
VB
Java
Objective-C
WinRT C#
C++
public Dictionary<string, string> Metadata { get; } 
Public ReadOnly Property Metadata As Dictionary(Of String,String) 
public Dictionary<string,string> Metadata {get;} 
@property (nonatomic, readonly) NSMutableDictionary* metadata; 
public java.util.Map<String, String> getMetadata() 
 get_Metadata();  
public:  
   property Dictionary<String^, String^>^ Metadata 
   { 
      Dictionary<String^, String^>^ get() 
   } 

Property Value

A dictionary of (System.String, System.String) that contains the generic metadata associated with this object. The default value is a dictionary with the items described in the remarks section.

Remarks

The object metadata can be used to store any generic values associated with an annotation object. By default, the AnnObject will create a dictionary with the following keys/values and set it in Metadata:

Key Value
"Subject" (SubjectMetadataKey) Empty string
"Author" (AuthorMetadataKey) Empty string
"Modified" (ModifiedMetadataKey) Empty string
"Title" (TitleMetadataKey) Empty string
"Content" (ContentMetadataKey) Empty string
"Created" (CreatedMetadataKey) Empty string

The metadata are saved and loaded as is by AnnCodecs to/from annotation files or streams.

Currently, the metadata is not used by the LEADTOOLS annotation toolkit for any special purposes. It is a user-define field.

Requirements

Target Platforms

See Also

Reference

AnnObject Class

AnnObject Members

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations.Core Assembly