Message 1 of 1
iLogic - API /Syntax for Export Commands from ribbon customize dialog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I want to export the application options and ribbon customize dialog with an IiLogic rule.
Unfortunately I can't find the syntax / API for export Ribbon Customize dialog, do any of you know it?
I would like to use an iLogic for the export of application options and Ribbon customisation dialog.
iLogic for the export for application options was no problem as I found the syntax, but I can't find one for the Ribbon customise export.
This is my Code so far:
Dim sName As String 'Dim sName1 As String Dim sPath As String sName = "Anwendungsoptionen.xml" 'sName1 = "Anpassen.xml" sPath = "V:\00_Inventor2024 Export\" If Not System.IO.Directory.Exists(sPath) Then System.IO.Directory.CreateDirectory(sPath) End If 'Export aktuelle Anwendungsoptionen ThisApplication.ExportApplicationOptions(sPath & sName) 'Export aktuelle Anpassungseinstellungen ThisApplication.Export...
I need for this Application a Syntax / API:
Does anyone have an idea?