![]() | DIAdem 2017 Help |
![]() | DIAdem 2018 Help |
![]() | DIAdem 2019 Help |
![]() | DIAdem 2020 Help |
![]() | DIAdem 2020 SP1 Help |
Specifies a temporary tag for an object in DIAdem REPORT.
Use this property to add additional information to the object. Afterwards you can evaluate such information in a program, for example, for special treatment of the object.
The tag does not affect the behavior of the object. DIAdem does not save this tag with the layout.
Object.TagTemporary
Object | FormulaDisplay Object with this property |
Object.TagTemporary | Variant with read and write access You can use numeric or Boolean values and strings as well as object structures. |
The following example assigns a temporary tag to formula graphics type objects:
Dim oMyReportObj, oMyReportObjects Set oMyReportObjects = Report.ActiveSheet.Objects For Each oMyReportObj in oMyReportObjects If oMyReportObj.ObjectType = eReportObjectFormulaDisplay Then oMyReportObj.TagTemporary = "Selected" End If Next
Helpful
Not Helpful