Files
EgtCAM5/ProjectPage/OptionPanel/MachiningOptionPanel/OperationExpander/OperationListBoxItem/DispositionOpListBoxItem.vb
T
Emmanuele Sassi 2f0c121fc4 EgtCAM5 :
- Divisi parametri operazioni tra lavorazioni e disposizioni.
- Iniziata implementazione movimento ventose, riferimenti e grezzi nelle disposizioni.
2016-11-07 12:11:48 +00:00

20 lines
432 B
VB.net

Public Class DispositionOpListBoxItem
Inherits OperationListBoxItem
Private m_Image As String
Public Property Image As String
Get
Return m_Image
End Get
Set(value As String)
m_Image = value
End Set
End Property
Sub New(nId As Integer, sName As String, nType As Integer)
m_Id = nId
Me.Name = sName
m_Type = nType
End Sub
End Class