GetPluginsList
Purpose
Returns an array of all plug-in names for plug-ins that are enabled.
Parameters
None
Returns
Return value: plug-in array as object
Type: Array of Strings
Example
Sample Code
Sub Main(ByVal Parms As Object)
Dim List As Object
List = hs.GetPluginsList
If List IsNot Nothing AndAlso List.Length > 0 Then
For Each P As String In List
If String.IsNullOrEmpty(P) Then Continue For
hs.WriteLog("Plug-In List", P & " is currently enabled.")
Next
End If
End Sub
Note
If a plug-in has instance information, then the instance name is appended to the plug-in name, with a colon (:) separating them. It should therefore be noted that this procedure may return the same plug-in name multiple times if there are multiple instances of that plug-in loaded.