Specifies whether the value of a property provides the name of the object instances of the class to which it belongs (true) or not (false). An object that has a designated name property (the IsNameProperty property of one of its properties is set or the NamePropertyIndex property of the object's class description is set) will have the designated name property's value assigned to its Name property. An object can have only one designated name property.


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

Syntax

Visual Basic (Declaration)
Property IsNameProperty As Nullable(Of Boolean)
C#
Nullable<bool> IsNameProperty { get; set; }
C++
property Nullable<bool> IsNameProperty abstract  {
    Nullable<bool> get();
    void set(Nullable<boolvalue);
}
J#
/** property */
public Nullable<bool> get_IsNameProperty();

/** property */
public void set_IsNameProperty(Nullable<boolvalue);
JScript
public function get IsNameProperty() : Nullable<bool>

public function set IsNameProperty(value : Nullable<bool>);

Remarks

See Also