Extracting Xdata (Finding Titles)
Not applicable
01-08-2018
08:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I have a some data that appears to be stored in XData.
In the interface this appears in the properties tab as
Size: 6"
Tag: RO-1-1-FLO
Using AutoCAD's internal extract, the labels for those variable come out as Size and TAG1.
How can I find the labels using .Net ?
Many thanks!
(I can extract the data that's stored within the XDATA using the below)
ResultBuffer acResBuf = acEnt.XData; if (acResBuf != null) { TypedValue[] rvArr = acResBuf.AsArray(); foreach (TypedValue tv in rvArr) {
//string sField = //Label for associated Value string sValue = tv.Value.ToString(); } }
Link copied