The name of the contained object.

For a DynamicReferentialContainmentRelationship or ReferentialContainmentRelationship object, this is the name of the Head object in the relationship. The default value is supplied as follows:

  • If both the Name and MimeType properties of the Head object are present and not zero length, the default value is Name.MimeType (where the MimeType value is a normalized representation).
  • If the MimeType property value is not present, the default is the Name value of the Head object.
  • If the Name value is not found, the Id value of the Head object is used.

The following characters are not allowed:

  • asterisk
  • forward slash
  • backslash
  • colon
  • question mark
  • double quote
  • less than
  • greater than
  • pipe
Note
If AutoUniqueName.AUTO_UNIQUE is set when the document is filed, the server attempts to make this containment name unique.

For an Event object generated from the IFileEvent and IUnfileEvent classes, the value of this property is the name of the Containable object that was added or removed, respectively .


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

Syntax

Visual Basic (Declaration)
Property ContainmentName As String
C#
string ContainmentName { get; set; }
C++
property string ContainmentName abstract  {
    String get();
    void set(String value);
}
J#
/** property */
public string get_ContainmentName();

/** property */
public void set_ContainmentName(string value);
JScript
public function get ContainmentName() : String

public function set ContainmentName(value : String);

Remarks

See Also