Save
Persists the result of previous setting and/or removing tags.
Compatibility
Available as of IDEA version 12.0
Syntax
Save(tagTests As Boolean)
Parameters
tagTests
If False, just persists the results into IDEA database.
If True, besides persisting results into the table, creates new and updates existing associations between IDEA database and audit tests.
Remarks
Save() method has to be called in order to persist the results of the methods SetTag(), RemoveTag() and RemoveAllTags().
Example
Sub Main()
Dim ac As Object
Dim tagging As Object
Set ac = CreateObject("SmartAnalyzer.AutomationClient")
Set tagging = ac.GetTagging("Sample-Weblog")
Tagging.RemoveAllTags
Tagging.Save
Tagging.SetTag "DebtorAmount", "SITE"
Tagging.SetTag "CustomerCode", "USER"
Tagging.Save True
End Sub