This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/UTS_Core/UTSModule/Station/PlanNodeTextChangedEventArgs.vb

46 lines
975 B
VB.net

Namespace UTSModule.Station
Public Class RowNodeChangedEventArgs
Inherits EventArgs
Enum RowNodeChangeType
None
RowType
Action
SaveToDb
RecordName
Retry
RetryInterval
[Label]
ControlType
Description
ErrorCode
ErrorMessage
CommandType
Command
Parameters
End Enum
''' <summary>
''' 修改后的节点
''' </summary>
''' <returns></returns>
Public Property Node() As RowNode
''' <summary>
''' 修改前的节点
''' </summary>
''' <returns></returns>
Public Property BeforeNode() As RowNode
''' <summary>
''' 修改类型
''' </summary>
''' <returns></returns>
Public Property ChangeType() As RowNodeChangeType
End Class
End Namespace