Servoy Properties Summary | |
---|---|
String | build |
Date | buildDate |
String | component |
String | licensee |
Number | textFormat |
Number | tiffFormat |
String | typeLicensed |
Number | unicodeTextFormat |
Number | version |
String | versionLicensed |
Servoy Methods Summary | |
---|---|
IIClient | client( Object ) |
IIClient | client( ) |
Array<Object> | getCurrentProcesses( ) |
Boolean | register( String ) |
Array<String> | tabParser( String ) |
Servoy Properties Details |
---|
build
String build
Returns the current version (major, minor, build)Returns
String build String
Supported Clients
SmartClient, WebClient, NGClient
buildDate
Date buildDate
Returns date release dateReturns
Date date Date
Supported Clients
SmartClient, WebClient, NGClient
component
String component
Returns the component nameReturns
String name String
Supported Clients
SmartClient, WebClient, NGClient
licensee
String licensee
Returns the licenseeReturns
String licensee String
Supported Clients
SmartClient, WebClient, NGClient
textFormat
Number textFormat
Retrieve the Format value for Text formatted input.Returns
Number format long
Supported Clients
SmartClient, WebClient, NGClient
tiffFormat
Number tiffFormat
Retrieve the Format value for Tiff formatted input.Returns
Number format long
Supported Clients
SmartClient, WebClient, NGClient
typeLicensed
String typeLicensed
Returns the type that is valid for this licenseReturns
String type String
Supported Clients
SmartClient, WebClient, NGClient
unicodeTextFormat
Number unicodeTextFormat
Get/Set unicode text formatReturns
Number format long
Supported Clients
SmartClient, WebClient, NGClient
version
Number version
Returns the current version (major, minor)Returns
Number version Double
Supported Clients
SmartClient, WebClient, NGClient
versionLicensed
String versionLicensed
Returns the version that is valid for this licenseReturns
String license String
Supported Clients
SmartClient, WebClient, NGClient
Servoy Methods Details |
---|
client
IIClient client( Object )
Create a client instance.Parameters
Object remote the remote
Returns
IIClient client IIClient
Supported Clients
SmartClient, WebClient, NGClient
Sample
// Create a client instance.
var connection = plugins.it2be_dde.connection("service", "topic");
client
IIClient client( )
Create a new instance of a DDE clientReturns
IIClient client IIClient
Supported Clients
SmartClient, WebClient, NGClient
Sample
// Create a new instance of a DDE client
var connection = plugins.it2be_dde.connection("service", "topic");
getCurrentProcesses
Array<Object> getCurrentProcesses( )
Retrieve currently running processes (applications etc).Returns
Array<Object> processes Object[]
Supported Clients
SmartClient, WebClient, NGClient
register
Boolean register( String )
Register your runtime license (use the Components Manager to request your license string)Parameters
String license the license
Returns
Boolean result boolean
Supported Clients
SmartClient, WebClient, NGClient
Sample
// You have to register your plug-in(s) and beans before you start using them
// One way to do so is create an 'onOpenSolution' method and add the 'register(.)' method(s) there
plugins.it2be_dde.register("Insert the license string(s) from your '*_runtime_license.txt' file here!");
tabParser
Array<String> tabParser( String )
Convert get results String into Array (Systems, Topics etc.).Parameters
String input the input
Returns
Array<String> results String[]
Supported Clients
SmartClient, WebClient, NGClient