Hello,
I would like to ask how to create property of class like example below? I saw it in Object browser of other object and I would like to create similar property in my class.
Here is info from Object browser :
Here is real example of usage :
I made this in my class :
But I don't know how to create LET? Could you help me?
Best regards...
|marek|
I would like to ask how to create property of class like example below? I saw it in Object browser of other object and I would like to create similar property in my class.
Here is info from Object browser :
Code:
Property TableCell(Setting As TableCellSettings, [Row1], [Col1], [Row2], [Col2])
Code:
m_pp.VSV.TableCell(25, 0, 1, , 100) = CInt(m_HeaderBold)
Code:
Private m_TableCell As Long
Public Property Get TableCell(Setting As Long, Optional Row1 As Long = 0, Optional Col1 As Long = 0, Optional Rov2 As Long = 0, Optional Col2 As Long = 0)
TableCell = m_TableCell
Debug.Print "Get TableCell"
End Property
Best regards...
|marek|