Hi there!
For example, is it possible to save a list of elements in a project so that they can be selected later, even after restarting Revit?
I was thinking about using a hidden shared parameter, but are there any other options?
Solved! Go to Solution.
Hi there!
For example, is it possible to save a list of elements in a project so that they can be selected later, even after restarting Revit?
I was thinking about using a hidden shared parameter, but are there any other options?
Solved! Go to Solution.
Solved by caroline.gitonga. Go to Solution.
Revit API provides an exciting and powerful extensible storage feature. The feature offers a completely new storage facility for applications which is completely invisible to the user. This functionality can be used to replace the technique of storing data in hidden shared parameters. Kindly, refer to these links to learn and understand the whole concept of Extensible storage and how you can achieve more using it:
https://thebuildingcoder.typepad.com/blog/2011/04/extensible-storage.html,
Revit API provides an exciting and powerful extensible storage feature. The feature offers a completely new storage facility for applications which is completely invisible to the user. This functionality can be used to replace the technique of storing data in hidden shared parameters. Kindly, refer to these links to learn and understand the whole concept of Extensible storage and how you can achieve more using it:
https://thebuildingcoder.typepad.com/blog/2011/04/extensible-storage.html,
SchemaBuilder.AddArrayField() method can be used to create a field containing an array of values in the Schema,
SchemaBuilder.AddMapField() method can be to create a field containing an ordered key-value map in the Schema
SchemaBuilder.AddArrayField() method can be used to create a field containing an array of values in the Schema,
SchemaBuilder.AddMapField() method can be to create a field containing an ordered key-value map in the Schema
Can't find what you're looking for? Ask the community or share your knowledge.