toJSON Method

Summary

Converts this LeadRectD to a JSON-compatible dictionary object.

Syntax
TypeScript
JavaScript
LeadRectD.prototype.toJSON = function() 
toJSON(): any; 

Return Value

a JavaScript JSON-compatible object to describe the LeadRectD instance.

Remarks

If the LeadRectD instance is Empty, then the width and height properties of this JSON object will be set to "-Infinity" and the x and y properties will be set to "Infinity":

{ 
"x": "Infinity", 
"y": "Infinity", 
"width": "-Infinity", 
"height": "-Infinity" 
} 

The returned dictionary object can be used to create a new LeadRectD instance with the static method FromJSON, though it is recommended to use Clone instead when simply creating a copy of the instance. The ToJSON and FromJSON methods allow the transfer of LeadRectD data between .NET, Java, and JavaScript.

Following standard web specifications, the ToJSON method and subsequent return value are used automatically for a LeadRectD instance when the global JSON.stringify function is called on that instance.

Requirements
Target Platforms
Help Version 21.0.2021.6.30
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.