GuiTree
在我们的 SAP 系统中,我们经常通过 SAP GUI 脚本 API自动化控制。在左栏中,有一个描述。在第二列中,有一个包含工具提示的图标。
使用此代码,我可以读取每个节点的文本:
/*ID is the SAPFEWSELib.GuiComponent.Id of the SAPFEWSELib.GuiTree; SAPWindow is the mainwindow
of SAP of type SAPFEWSELib.GuiMainWindow*/
SAPFEWSELib.GuiTree GT = (SAPFEWSELib.GuiTree)SAPWindow.FindById(ID);
foreach (string key in GT.GetAllNodeKeys())
{
System.Console.WriteLine("Key " + key + " contains " + GT.GetNodeTextByKey(key));
}
是否也有可能访问第二列?