Determining the width of a formatted value/string: Difference between revisions

From Planimate Knowledge Base
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 1: Line 1:
The routine operation '''Formatted Width''' (in the Labels submenu) will return the width in characters that the target attribute/cell would take to display. This works for label and numerically formatted values.<br /><br /><br />
The width of a string, label or formatted form of an attribute can be determined using the strlen() expression function along with an "="&nbsp;routine operation, eg:
----


p.width = strlen(p.mytext)


 
An older way to do this was using the routine operation '''FormattedWidth()'''
<font size="2">idkbase note 101</font>
[[Category:Format_(Units)]] [[Category:Routine]] [[Category:Labellist]]
 
[[Category:Format (Units)]]
[[Category:Routine]]
[[Category:Labellist]]

Latest revision as of 19:55, 13 December 2013

The width of a string, label or formatted form of an attribute can be determined using the strlen() expression function along with an "=" routine operation, eg:

p.width = strlen(p.mytext)

An older way to do this was using the routine operation FormattedWidth()