Property: CommandList as Commands (read-only)
Dispatch Id: 1004
Description:
This property returns a flat list of all commands defined available with XMLSpyControl. To get commands organized according to their menu structure, use MainMenu. To get toolbar commands, use Toolbars.
public void GetAllXmlSpyCommands() { // Get all commands from the XMLSpy ActiveX control assigned to the current form XMLSpyControlLib.XMLSpyCommands commands = this.axXMLSpyControl1.CommandList; // Iterate through all commands for (int i = 0; i < commands.Count; i++) { // Get each command by index and output it to the console XMLSpyControlLib.XMLSpyCommand cmd = axXMLSpyControl1.CommandList[i]; Console.WriteLine("{0} {1} {2}", cmd.ID, cmd.Name, cmd.Label.Replace("&", "")); } } |
C# example