Returns a Boolean value indicating whether the feature addon identified by addOnId is installed (True) or not (False) in the object store. If the addon identified by addOnId has been superseded and the superseded addon is currently installed, a value of True is returned.

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

ToggleSyntax

Visual Basic (Declaration)
Function IsAddOnInstalled ( _
	addOnId As Id _
) As Boolean
C#
bool IsAddOnInstalled(
	Id addOnId
)
Visual C++
bool IsAddOnInstalled(
	Id^ addOnId
)
JavaScript
function isAddOnInstalled(addOnId);

Parameters

addOnId
Type: FileNet.Api.Util..::.Id
The ID of the feature addon to check.

Return Value

Boolean indicating whether or not the addonn specified by addOnId or its superseding version is installed.

ToggleSee Also