PlugInGetInstalledPlugInNames Method (PlugInType, Boolean, Boolean, Boolean) |
Gets a list of installed plug-in names. The list can be restricted by some filters.
Namespace:
Rhino.PlugIns
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 7.5
Syntax public static string[] GetInstalledPlugInNames(
PlugInType typeFilter,
bool loaded,
bool unloaded,
bool localizedPlugInName
)
Public Shared Function GetInstalledPlugInNames (
typeFilter As PlugInType,
loaded As Boolean,
unloaded As Boolean,
localizedPlugInName As Boolean
) As String()
Parameters
- typeFilter
- Type: Rhino.PlugInsPlugInType
The enumeration flags that determine which types of plug-ins are included.
- loaded
- Type: SystemBoolean
true if loaded plug-ins are returned. - unloaded
- Type: SystemBoolean
true if unloaded plug-ins are returned. - localizedPlugInName
- Type: SystemBoolean
If true localized plug-in names are returned otherwise; English names are returned.
Return Value
Type:
StringAn array of installed plug-in names. This can be empty, but not null.
See Also