Using the C# ArcObject SDK, I can set/get metadata on a layer with the following calls:
IRasterLayer layer = ...;
ESRI.ArcGIS.Geodatabase.IDataset dataset = layer as IDataset;
ESRI.ArcGIS.Geodatabase.RasterDatasetName objectClassName =(ESRI.ArcGIS.Geodatabase.RasterDatasetName)dataset.FullName;
ESRI.ArcGIS.Geodatabase.IMetadata metadata = (ESRI.ArcGIS.Geodatabase.IMetadata)objectClassName;
IPropertySet properties = (IPropertySet)metadata.Metadata;
is there anything equivalent in ArcGIS Pro SDK?
Solved! Go to Solution.
No, we haven't yet added support for metadata to the ArcGIS Pro API.
No, we haven't yet added support for metadata to the ArcGIS Pro API.
Is there plan to add it in the near future?
It's in our roadmap to be sure, but unfortunately no plans for the short-term.
I'm also waiting patiently for metadata access in Pro SDK... can't come soon enough!
Hi, Any update on this? Is this functionality available now?
Regards,
Laxmikanth
Upvote for this feature, I too am in need to update metadata on features at the moment.