Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Styling

Bret Leasure edited this page Feb 15, 2024 · 2 revisions

Attribute tags are used to create templates for how the callouts and labels will appear. The AttributeTags class contains all the possible tag strings.

Tag Description
<VIEW> View Name
<VIEW SHEET #> Sheet number the view is located on
<VIEW SHEET NAME> Sheet name the view is located on
<PARENT SHEET #> Sheet number the parent view is located on (where the view callout is located)
<PARENT SHEET NAME> Sheet name the parent view is located on (where the view callout is located)
<DELIM> Delimeter (only available in view labels)
<SCALE> View Scale (only available in view labels)

Examples

Appears As Template String Template String Using AttributeTags Properties
B (2) "<VIEW> (<VIEW SHEET #>)" $"{AttributeTags.ViewName} ({AttributeTags.ViewSheetNumber})"
B (Sh. 2) "<VIEW> (Sh. <VIEW SHEET #>)" $"{AttributeTags.ViewName} (Sh. {AttributeTags.ViewSheetNumber})"

Clone this wiki locally