Version

RegisterUserDefinedFunctionLibrary Method (UltraWebCalcManager)

Registers an assembly containing one or more Infragistics.WebUI.CalcEngine.UltraCalcFunction types as a user-defined function library.
Syntax
'Declaration
 
Public Function RegisterUserDefinedFunctionLibrary( _
   ByVal assembly As Assembly _
) As Boolean
public bool RegisterUserDefinedFunctionLibrary( 
   Assembly assembly
)

Parameters

assembly
A loaded assembly containing a library of user-defined functions.

Return Value

Returns True if assembly was registered without error, otherwise it returns false if the registration attempt failed.
Remarks

All types within the registered assembly are examined by reflection, and any type that derives from the UltraCalcFunction class is added to the list of functions available to UltraCalc formulas.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also