OpenXmlElement.Annotation Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Annotation(Type) |
Get the first annotation object of the specified type from the current OpenXmlElement element. |
Annotation<T>() |
Get the first annotation object of the specified type from the current OpenXmlElement element. |
Annotation(Type)
Get the first annotation object of the specified type from the current OpenXmlElement element.
public object Annotation (Type type);
public object? Annotation (Type type);
member this.Annotation : Type -> obj
Public Function Annotation (type As Type) As Object
Parameters
- type
- Type
The type of the annotation to retrieve.
Returns
The first annotation object with the specified type.
Applies to
Annotation<T>()
Get the first annotation object of the specified type from the current OpenXmlElement element.
public T Annotation<T> () where T : class;
public T? Annotation<T> () where T : class;
member this.Annotation : unit -> 'T (requires 'T : null)
Public Function Annotation(Of T As Class) () As T
Type Parameters
- T
The type of the annotation to retrieve.
Returns
The first annotation object of the specified type.