📄 execute.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// An element that causes an event to invoke a WSDL-based web service.
/// </summary>
public class execute : eventAction
{
public execute() : base("execute") { }
public string connection
{
set
{
this.SetAttribute("connection", value);
}
}
public executeType executeType
{
set
{
this.SetAttribute("executeType", value);
}
}
public runAt runAt
{
set
{
this.SetAttribute("runAt", value);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -