Difference between revisions of "CARenderingStyle::FullPrecision"

(Created page with "<< Back to CARenderingStyle = property bool FullPrecision = == Data type == Boolean == Access == read/write = Usage = dim res As CATable = obj...")
 
Line 1: Line 1:
[[CARenderingStyle|<< Back to CARenderingStyle]]
+
[[Category:ADE User Guide]]
 
+
[[ADE User Guide]] > [[ADE Server Class Reference]] > [[CARenderingStyle]]
 +
<languages />
 +
<translate>
 
= property bool FullPrecision =
 
= property bool FullPrecision =
  
Line 21: Line 23:
  
 
= See Also =
 
= See Also =
 +
</translate>

Revision as of 01:18, 16 June 2015

ADE User Guide > ADE Server Class Reference > CARenderingStyle

Other languages:
English • ‎中文

property bool FullPrecision

Data type

Boolean

Access

read/write

Usage

dim res As CATable = obj.Evaluate("Sqrt(2)")
res.RenderingStyle.NumberAsText = true
res.RenderingStyle.FullPrecision = false
dim s As String = res.AtomicValue ’ returns "1.414"
res.RenderingStyle.FullPrecision = true
s = res.AtomicValue ’ returns "1.4142135623731"

See Also

Comments


You are not allowed to post comments.