addForm

fun addForm(classID: Long, form: Form, atts: Array<Attribute>?): Boolean

Inserts the given SVS form in the layer that corresponds to the specified classID.

Note : a Form can be added to only one DynamicLayersGroup at a time. To add a Form to another DynamicLayersGroup, you have to remove it from the one its attached to using remove(classID: Long, form: Form, detach : Boolean) //TODO MSDK-633 update remove method in comment

Return

false if an error occurs and the form couldn't be added, true otherwise.

Parameters

classID
The class identifier of the layer.
form
The SVS form to insert.
atts
An optional array of SVS attributes.

Throws