The Reporter class contains constants for use in REPORTER. More...
The REPORTER JavaScript API provides many class constants, properties and methods. For Arup to
be able to extend and enhance the API in the future any constant, property or method names beginning with a lowercase
or uppercase letter are reserved.
If you need to add your own properties or methods to one of the existing classes then to avoid any potential future conflict you
should ensure that the name begins with either an underscore (_) or a dollar sign ($) or the name is prefixed with your
own unique identifier.
For example if company 'ABC' need to add a property called 'example' then to avoid any potential future conflict use one of:
| Name | Description |
| Reporter.CapFlat | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.CAP_FLAT instead [deprecated] |
| Reporter.CapRound | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.CAP_ROUND instead [deprecated] |
| Reporter.CapSquare | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.CAP_SQUARE instead [deprecated] |
| Reporter.JoinBevel | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JOIN_BEVEL instead [deprecated] |
| Reporter.JoinMitre | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JOIN_MITRE instead [deprecated] |
| Reporter.JoinRound | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JOIN_ROUND instead [deprecated] |
| Reporter.JustifyBottom | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JUSTIFY_BOTTOM instead [deprecated] |
| Reporter.JustifyCentre | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JUSTIFY_CENTRE instead [deprecated] |
| Reporter.JustifyLeft | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JUSTIFY_LEFT instead [deprecated] |
| Reporter.JustifyMiddle | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JUSTIFY_MIDDLE instead [deprecated] |
| Reporter.JustifyRight | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JUSTIFY_RIGHT instead [deprecated] |
| Reporter.JustifyTop | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.JUSTIFY_TOP instead [deprecated] |
| Reporter.LineDash | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.LINE_DASH instead [deprecated] |
| Reporter.LineDashDot | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.LINE_DASH_DOT instead [deprecated] |
| Reporter.LineDashDotDot | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.LINE_DASH_DOT_DOT instead [deprecated] |
| Reporter.LineDot | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.LINE_DOT instead [deprecated] |
| Reporter.LineNone | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.LINE_NONE instead [deprecated] |
| Reporter.LineSolid | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.LINE_SOLID instead [deprecated] |
| Reporter.TextBold | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.TEXT_BOLD instead [deprecated] |
| Reporter.TextItalic | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.TEXT_ITALIC instead [deprecated] |
| Reporter.TextNormal | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.TEXT_NORMAL instead [deprecated] |
| Reporter.TextUnderline | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.TEXT_UNDERLINE instead [deprecated] |
| Reporter.ViewDesign | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.VIEW_DESIGN instead [deprecated] |
| Reporter.ViewPresentation | This constant is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Reporter.VIEW_PRESENTATION instead [deprecated] |
| Name | Description |
| Reporter.VIEW_DESIGN | Show template in design view |
| Reporter.VIEW_PRESENTATION | Show template in presentation view |
| Name | Type | Description |
| currentTemplate | Template | This property is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Template.GetCurrent() instead [deprecated] |
| templates | array | This property is deprecated in version 12.0. It is only provided to keep old scripts working. We strongly advise against using it in new scripts. Support may be removed in future versions. Please use Template.GetAll() instead [deprecated] |
Detailed DescriptionThe Reporter class allows you to access constants used in REPORTER. |