FixedBitmap Class (Typed) |
|
Namespace: XSharp.VO.SDK
The FixedBitmap type exposes the following members.
| Name | Description | |
|---|---|---|
| FixedBitmap |
Construct a FixedBitmap object.
|
| Name | Description | |
|---|---|---|
| HyperLabel |
The hyperlabel connected to the control.
(Overrides HyperLabel.) |
| Name | Description | |
|---|---|---|
| AsString |
Return the identifying label of the fixed bitmap.
(Overrides AsString.) | |
| SetBitmap |
Associate a bitmap image with the FixedBitmap static control.
|
1CLASS MyDialogWindow INHERIT DialogWindow 2HIDDEN OMyFBitmap AS OBJECT 3METHOD Init(oWindow) CLASS MyDialogWIndow 4SUPER:Init(oWindow,ID_MYDIALOG) 5OMyFBitmap := FixedBitmap{SELF,MYBITMAP} 6OMyFBitmap:Origin := Point{10,10} 7SELF:Show()
1RESOURCE IDI_FIXEDBITMAP BITMAP fixed.bmp 2RESOURCE IDD_ABOUT DIALOG 20, 20, 160, 80 3STYLE WS_POPUP | WS_DLGFRAME 4BEGIN 5BITMAP IDI_FIXEDBITMAP -1, 8, 8, 0, 0 6END