xml code generated by Ribbon Designer

Add-in Express™ Support Service
That's what is more important than anything else

xml code generated by Ribbon Designer
 
AK3




Posts: 6
Joined: 2009-07-18
Hello,

perhaps a rather stupid question but ...

I try to find the XML Code generated by the Ribbon Designer. Can you please tell me where it can be accessed?

Thanks in advance.

BRGDS
Armin
Posted 31 Aug, 2017 11:23:45 Top
nwein




Posts: 577
Joined: 2011-03-28
Hook up to the Ribbon Before Load event in your addin module. In that event you can see the xml through the e.Xml arg.
Sample:
private void AddinModule_OnRibbonBeforeLoad(object sender, ADXRibbonBeforeLoadEventArgs e) 
{ 
    //e.Xml
}
Posted 31 Aug, 2017 15:34:52 Top
AK3




Posts: 6
Joined: 2009-07-18
Thank you!
Posted 01 Sep, 2017 00:46:42 Top