Display element parameter in window form datagrid
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dear all,
I have collected a list of element parameter value (string type) and want to display it in the window form data grid row.
List<string> markList <------------Collected from Revit Element Parameter.
I tried to pass the list to the window form by wrting this line.
testForm.passedmarkList = markList; where passedmarkList is defined the the Form class.
the next thing i want to do is to display the string in the passedmarkList in a datagrid row by triggering a button clicking event.
however it fails,
i suspect that the markList is NOT passed to the testFrom.
Can anyone give me some help on this?
Or to be direct, how can I show the document collected data in the window form by triggering a button clicking event?
Thx in advance!!!