Access the
collection by property name. This version will return the intrinsic value, such as
,
, or
, as opposed to the value wrapped in an
. To get the value as an
use the
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 |
---|