obj Property |
Gets a value representing the PDF object added to the currently loaded document.
This property is read-only and should not be set to.
//declare event handler function (which accepts an object of type ObjectEventArgs as an argument) function objectSelectedHandler(evt) { //make the new object unmovable evt.obj.setProperties( {"moveable" : false} ); } //get API class var myApi = new PdfWebControlApi("PdfWebControl1"); // where "PdfWebControl1" is the ID (ClientID) assigned to the PdfWebControl instance //attach event handler to objectSelected event myApi.addEventListener("objectSelected", objectSelectedHandler);