Access the Properties collection by property name. This version will return the intrinsic value, such as IDocument, String, or DateTime, as opposed to the value wrapped in an IProperty. To get the value as an IProperty use the GetProperty() method.

Namespace:  FileNet.Api.Property
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Default Property Item ( _
	propertyName As String _
) As Object
C#
Object this[
	string propertyName
] { get; set; }
Visual C++
property Object^ default[String^ propertyName] {
	Object^ get (String^ propertyName);
	void set (String^ propertyName, Object^ value);
}
JavaScript
function get_item(propertyName);
function set_item(value);

Parameters

propertyName
Type: System..::.String

ToggleSee Also