Is there a way to remove the Print Layout Button(esri_sharing_PrintLayout) from sharing tab from ArcGIS Pro.
I have managed removing the Export Layout using the below in the config.daml of my Addin.
<modules>
<updateModule refID="esri_layouts">
<splitButtons>
<deleteSplitButton refID="esri_layouts_exportLayoutSplitButton"/>
</splitButtons>
</updateModule>
</modules>
I have failed to remove the print layout using the above method.
I have noticed that none of the DAML definitions(https://github.com/Esri/arcgis-pro-sdk/tree/master/DAML) contain esri_sharing_PrintLayout.
Am I missing something here.