OpenXmlElement.Annotation Method

Definition

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

T

The first annotation object of the specified type.

Applies to