
Not applicable
10-09-2016
10:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dear all,
I'm using Navisworks 2016. I would like get value of the row in tab Configure of TimeLiner
See the attached images.
I tried it with code as below, but I am not able to do it:
IDocumentTimeliner tl = oDoc.Timeliner; DocumentTimeliner tl_doc = (DocumentTimeliner)tl; foreach (TimelinerDataSource oDS in tl_doc.DataSources) { System.Diagnostics.Trace.WriteLine("\n DisplayName: " + oDS.DisplayName + "- ProviderName: " + oDS.DataSourceProviderName); foreach (TimelinerDataSourceField oTlF in oDS.AvailableFields) { System.Diagnostics.Trace.WriteLine("\n DisplayName: " + oTlF.DisplayName); } }
Is there a good C# example of how to do this?
Any tips on these will be great help. Thanks in advance.
Best Regards,
Minh
Solved! Go to Solution.