📄 faxstatus.cs
字号:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
/// <summary>
/// Summary description for FaxStatus
/// </summary>
///
namespace IFS.ReportFax
{
public class FaxStatus
{
public const int SENDER_ERROR = -1;
public const int SENDER_SENDING = 1;
public const int SENDER_IDLE = 0;
public const int FAX_SENT = 2;
public const int FAX_UNSENT = 3;
public const int FAX_SENDING = 4;
public const int FAX_ERROR = 5;
public const int SERVICE_UNINIT = 6;
public const int SERVICE_RUNNABLE = 7;
public const int SERVICE_RECIEVED = 8;
public const int SERVICE_RUNNABLE_ERROR = 9;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -