Realizes all the AnnRedactionObject objects in this AnnAutomation.
AnnAutomation.prototype.realizeAllRedactions = function()realizeAllRedactions(): void;Use the CanRealizeAllRedactions property to determine whether you can currently call this method.
This method will call the method for all AnnRedactionObject objects.
The following example will add a couple of redaction objects then realizes and restores them.
example: function SiteLibrary_DefaultPage$example() {var automation = this._automation;// see if we can realize or restore all the redaction objects (this should show a message informing you there are no redaction objects in this automation)this.realizeRestoreAllRedactions(automation);// first add a couple of new redaction object to the automationvar redaction = new lt.Annotations.Core.AnnRedactionObject();redaction.set_rect(lt.LeadRectD.create(100, 100, 800, 800));automation.get_container().get_children().add(redaction);redaction = new lt.Annotations.Core.AnnRedactionObject();redaction.set_rect(lt.LeadRectD.create(1000, 1000, 800, 800));automation.get_container().get_children().add(redaction);automation.invalidate(lt.LeadRectD.get_empty());// see if we can realize/restore the objects (should realize the redactions)this.realizeRestoreAllRedactions(automation);// see if we can realize/restore the objects (should restore the redactions)this.realizeRestoreAllRedactions(automation);},realizeRestoreAllRedactions: function SiteLibrary_DefaultPage$realizeRestoreAllRedactions(automation) {if(automation.get_canRealizeAllRedactions()){// realizeautomation.realizeAllRedactions();alert("Redaction objects have been realized");}else if(automation.get_canRestoreAllRedactions()){// restoreautomation.restoreAllRedactions();alert("Redaction objects have been restored");}elsealert("Cannot realize or restore because no redaction object is currently in this automation");automation.invalidate(lt.LeadRectD.get_empty());},
|
Products |
Support |
Feedback: realizeAllRedactions Method (AnnAutomation) - Leadtools.Annotations.Automation |
Introduction |
Help Version 19.0.2017.3.21
|
