obj Property |
Gets a value representing the PDF object added to the currently loaded document.
this.obj;
Type: PdfObject Class
The PDF object added which caused this event to be raised.This property is read-only and should not be set to.
//declare event handler function (which accepts an object of type ObjectClickEventArgs as an argument) function objectClickHandler(evt) { //make the new object unmovable evt.obj.setProperties( {"movable" : false} ); //if this is a text object if(evt.obj.getType() == evt.obj.ObjectType.TextShape) { //cancel the default click action evt.cancel = true; } } //get API class var myApi = new PdfWebControlApi("PdfWebControl1"); // where "PdfWebControl1" is the ID (ClientID) assigned to the PdfWebControl instance //attach event handler to objectClick event myApi.addEventListener("objectClick", objectClickHandler);