Find below all the settings that can be configured through WebFMX SDK connect method.
Parameter
|
What it means
|
Type/format
|
Default
|
resolution
|
"fittobrowser", "fittoscreen", "fixed", when fixed, the parameters width and height will be considered.
|
string
resolution
|
"fittobrowser"
|
width
|
Application environment width. It will only be considered when the resolution parameter is set to "fixed".
|
integer
pixels
|
$("#deskdiv").width()
|
height
|
Application environment height. It will only be considered when the resolution parameter is set to "fixed".
|
integer
pixels
|
$("#deskdiv").height()
|
maxWidth
|
Maximum width for the application environment. Only available when the setting fitToBrowser below is enabled.
|
integer
pixels
|
0
|
maxHeight
|
Maximum height for the application environment. Only available when the setting fitToBrowser below is enabled.
|
integer
pixels
|
0
|
showToolbar
|
Set false to hide WebFMX toolbar.
|
boolean
true,false
|
true
|
scaled
|
By setting this option, you will have the connection image scaled. The original desktop size will be the maximum limit size applied to the connection.
It works only when the fitToBrowser property is enabled.
|
boolean
true,false
|
false
|
clipboard
|
Enables/disables the application clipboard.
|
boolean
true,false
|
true
|
fitToBrowser
|
Set this property to true in order to have the application div adjusted to the web browser size. If this property is set to false, you will have to manage manually the div location and size.
|
boolean
true,false
|
true
|
|