Hi,
How to add multiple filter to the SaveItemDialog()? I wanted to give an option to save Shapefiles or Featurclass. I am looking for something like IGxObjectFilterCollection.AddFilter method.
Right now in Pro SDK, I am using the below code but could not find an option to add multiple Filters.
SaveItemDialog pathOutputLayer = new SaveItemDialog();
pathOutputLayer.Filter = ItemFilters.shapefiles;
//pathOutputLayer.Filter = ItemFilters.featureClasses_all;
Thanks