|
There is no way to unlink a labels component via a script, but you can create a copy of a linked component: 'VBScript Sub Main Set src = Document.ComponentSet("Labels") Set tgt = Document.NewLabels("Unlinked", src.CoordinateSystem) For Each lbl In src.LabelSet tgt.LabelSet.Add lbl.Text, lbl.Geom Next End Sub
|