AppearanceDictionary Class
Annotation appearance dictionary specifying how the annotation shall be presented visually on the page.
Inheritance Hierarchy
SystemObject
  Aspose.Pdf.AnnotationsAppearanceDictionary

Namespace: Aspose.Pdf.Annotations
Assembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntax
public sealed class AppearanceDictionary : IDictionary<string, XForm>, 
	ICollection<KeyValuePair<string, XForm>>, IEnumerable<KeyValuePair<string, XForm>>, 
	IEnumerable

The AppearanceDictionary type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of elements contained in the dictionary.
Public propertyIsFixedSize
Gets a value indicating whether dictionary has a fixed size.
Public propertyIsReadOnly
Gets a value indicating whether dictionary is read-only.
Public propertyIsSynchronized
Gets a value indicating whether access to the dictionary is synchronized (thread safe).
Public propertyItemObject Obsolete.
Represents convenient form for getting appearance streams.
Public propertyItemString
Represents convenient form for getting appearance streams.
Public propertyKeys
Gets keys of the dictionary. If appearance dictionary has subditionaries, then Keys contains (N|R|D).state values, where N - normal appearance, R - rollover appearance, D - down appearance and state - the name of the state (e.g. On, Off for checkboxes).
Public propertySyncRoot
Gets an object that can be used to synchronize access to the dictionary.
Public propertyValues
Gets the list of the dictionary values. Result collection contains the list of XForm objects.
Methods
  NameDescription
Public methodAdd(KeyValuePairString, XForm)
Public methodAdd(Object, Object) Obsolete.
Adds an element with the provided key and value.
Public methodAdd(String, XForm)
Add X form for specifed key.
Public methodClear
Removes all elements from the dictionary.
Public methodContains(KeyValuePairString, XForm)
Public methodContains(Object) Obsolete.
Determines whether dictionary contains an element with the specified key.
Public methodContainsKey
Determines does this dictionary contasins specified key.
Public methodCopyTo(KeyValuePairString, XForm, Int32)
Public methodCopyTo(XForm, Int32)
Copies the elements of the dictionary to an Array, starting at a particular Array index.
Public methodEquals (Inherited from Object.)
Public methodGetEnumerator
Returns an IDictionaryEnumerator object for the dictionary.
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodRemove(KeyValuePairString, XForm)
Public methodRemove(Object) Obsolete.
Removes the element with the specified key.
Public methodRemove(String)
Removes key from the dictionary.
Public methodToString (Inherited from Object.)
Public methodTryGetValue
Tries to find key in the dictionary and retreives value if found.
See Also