CARenderingStyle::FullPrecision

Revision as of 04:33, 13 May 2015 by Lchrisman (talk | contribs) (Created page with "<< Back to CARenderingStyle = property bool FullPrecision = == Data type == Boolean == Access == read/write = Usage = dim res As CATable = obj...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<< Back to CARenderingStyle

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.