RunDialog 方法
描述
运行 Epson RC+ 8.0 对话框。
语法
Sub RunDialog (DialogID As SpelDialogs [, Parent As Form])
参数
- DialogID
待运行 Epson RC+ 8.0 对话框的 ID。 - Parent
可选。窗口的 .NET 父窗体。
RunDialog 示例
VB 例:
Sub btnRobotManager_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles btnRobotManager.Click
m_spel.RunDialog(SpelDialogs.RobotManager)
End Sub
C# 例:
void btnRobotManager_Click(object sender, EventArgs e)
{
m_spel.RunDialog(SpelDialogs.RobotManager);
}