For a property description, indicates whether the property described 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).

For ICmThumbnail, indicates whether the thumbnail image was automatically generated by the system. If the image was user generated, that is, generated by a third-party application rather than by the Content Engine, the system cannot overwrite the image with a different one. However, a client application can retrieve a ICmThumbnail object and overwrite the existing image, whether or not the image was system- or user-generated.

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

ToggleSyntax

Visual Basic (Declaration)
ReadOnly Property IsSystemGenerated As Nullable(Of Boolean)
C#
Nullable<bool> IsSystemGenerated { get; }
Visual C++
property Nullable<bool> IsSystemGenerated {
	Nullable<bool> get ();
}
JavaScript
function get_isSystemGenerated();

ToggleRemarks

ToggleSee Also