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)

Syntax

Visual Basic (Declaration)
Default Property Item( _ 
   ByVal propertyName As String _ 
) As Object
C#
object this[
   string propertyName
] { get; set; }
C++
property object default[String propertyName] abstract  {
    Object get(String propertyName);
    void set(String propertyName, Object value);
}
J#
/** property */
public object get_Item(string propertyName);

/** property */
public void set_Item(string propertyName, object value);
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.

See Also