[quote user="Lorys"] I recently received a dwg that when converted to ustn dgn had over 100 tagset defined but we dropped all the tags to text so we dont want the tag sets [/quote]
Something along these lines …
Dim oSet As TagSet
For Each oSet In ActiveDesignFile.TagSets
ActiveDesignFile.TagSets.Remove oSet.Name
Next oSet