Indicates whether the property described by a given property description has its value set automatically by the Content Engine server (true) or not (false). In general if IsSystemGenerated is true, the described property either provides system information (for example, DateCreated) or has its value determined by the server according to the results of a method call or some other operation (for example, if you call a folder's CreateSubFolder method, the system will automatically add the newly created folder to the collection of objects returned by the SubFolders property).


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

Syntax

Visual Basic (Declaration)
ReadOnly Property IsSystemGenerated As Nullable(Of Boolean)
C#
Nullable<bool> IsSystemGenerated { get; }
C++
property Nullable<bool> IsSystemGenerated abstract  {
    Nullable<bool> get();
}
J#
/** property */
public Nullable<bool> get_IsSystemGenerated();
JScript
public function get IsSystemGenerated() : Nullable<bool>

Remarks

See Also