ShapeAppBasicCSharpGenericCollectionAdapter sample hooks VSTA pipeline to pass custom type: IList<Document>
01-19-2009
Downloads: 744
File size: 712.2kB
Views: 4,062
 |
ShapeAppBasicCSharpGenericCollectionAdapter sample hooks VSTA pipeline to pass custom type: IList<Document> |
Based on The MS VSTA architects' blog post, this sample (created from ShapeAppBasicCSharp) uses custom adapters in the VSTA pipeline, to pass generic collections of documents to the add-in:
IList<Document> documents = this.GetDocuments();
The sample is fairly straightforward and comes with a walk-through document supplement (ShapeAppBasicCSharpGenericCollectionAdapter.doc) to help you understand, install, and run the sample and to point out interesting parts in the sample.