home *** CD-ROM | disk | FTP | other *** search
-
- Public Enum lbModeTypes
- [Text Only Mode] = 0
- [Image Mode]
- End Enum
-
- Public Enum lbBorderStyleTypes
- None = 0
- [Fixed Single]
- End Enum
-
- ' Expose the control's events as a part of its
- ' interface.
- Public Event Click()
- Public Event DblClick()
- Public Event KeyDown(KeyCode As Integer, Shift As Integer)
- Public Event KeyPress(KeyAscii As Integer)
- Public Event KeyUp(KeyCode As Integer, Shift As Integer)
- Public Event MouseDown(Button As Integer, Shift As Integer, _
- X As Single, Y As Single)
- Public Event MouseMove(Button As Integer, Shift As Integer, _
- X As Single, Y As Single)
- Public Event MouseUp(Button As Integer, Shift As Integer, _
- X As Single, Y As Single)
-
- Private mbooButtonLighted As Boolean
- Private mfonFont As StdFont
- Private mmodButtonMode As lbModeTypes
- Private molcBackColor As OLE_COLOR
- Private molcSelColor As OLE_COLOR
- Private mpicPicture As New StdPicture
- Private mpicSelPicture As New StdPicture
- Private mpoiCursorPos As POINTAPI
-