Specifies the index of the document content element to which this annotation applies. This property is intended only as a means by which an application can match an annotation with a document content element. The server does not keep track of this property value nor does it enforce it for referential integrity.

Because the positional index of a given content element within a document's ContentElementList collection is subject to change, it is recommended that you populate this property with the value of the content element's ElementSequenceNumber property rather than its positional index. The value of the ElementSequenceNumber property is server-generated and provides a unique and unchanging number for a given content element. Because the number of content elements of a document is variable, if you choose to use a positional index it is up to your application to ensure that it accurately reflects the correct index of the content element to which the annotation applies. For example, if the AnnotatedContentElement property specifies the positional index of the third content element of a document with five content elements, and the second content element is then removed, the property will consequently reference the wrong content element.


Namespace: FileNet.Api.Core
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property AnnotatedContentElement As Nullable(Of Integer)
C#
Nullable<int> AnnotatedContentElement { get; set; }
C++
property Nullable<int> AnnotatedContentElement abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_AnnotatedContentElement();

/** property */
public void set_AnnotatedContentElement(Nullable<intvalue);
JScript
public function get AnnotatedContentElement() : Nullable<int>

public function set AnnotatedContentElement(value : Nullable<int>);

Remarks

See Also