Skip to content

setLoadJavaClassesUsing

Julian Halliwell edited this page May 9, 2025 · 3 revisions

For the current spreadsheet library instance, specifies how classes from the supporting java libraries should be loaded.

setLoadJavaClassesUsing( method )

Required arguments

  • format string: one of the following: osgi, JavaLoader, javaSettings, dynamicPath, classPath.

Note

You can also pass in the value via the init() method.

Example 1

spreadsheet = New spreadsheetCFML.spreadsheet();
spreadsheet.setLoadJavaClassesUsing( "javaSettings" )

Example 2: via the init() method

spreadsheet = New spreadsheetCFML.spreadsheet( loadJavaClassesUsing="javaSettings" );

Clone this wiki locally