8fbed00523
- Introduzione comando Edit - Cancellazione file .ori in apertura simulazione se pezzo non calcolato (altrimenti non li ricalcola) - aggiornamento versione programma - correzione errori causati dalla modalita' assemblato - introduzione parziale reset stati calc in import project
25 lines
429 B
VB.net
25 lines
429 B
VB.net
Public Class CalcEditEndEventArgs
|
|
Inherits EventArgs
|
|
|
|
Public Enum Results As Integer
|
|
NULL = 0
|
|
MODIFIED = 1
|
|
ERROR_ = 2
|
|
End Enum
|
|
|
|
Public m_End As Results
|
|
Public Property End_ As Results
|
|
Get
|
|
Return m_End
|
|
End Get
|
|
Private Set(value As Results)
|
|
m_End = value
|
|
End Set
|
|
End Property
|
|
|
|
Sub New(Result As Results)
|
|
m_End = Result
|
|
End Sub
|
|
|
|
End Class
|