|
|
|
|
|
- Inserting images
- Image height (List Box or Combo Box control)
- Image in the title of a column in a Table control
gImage (Function) In french: gImage Builds a sequence of characters containing an image. The inserted image can be: - a standard image,
- an image made of several drawings. This image will have been divided beforehand (by LoadImage or by LoadImageSheet).
// Add an image to the title of a column in a Table control TABLE_MyTable.COL_MyColumn.Title = gImage("MyImage.BMP") + "My title"
Syntax <Result>: Character string Sequence of characters in the following format: <Image identifier>, <Drawing rank>. <Image name>: Character string - Name and full (or relative) path of the image to insert. A UNC path can be used.
- Name of Image control containing the image to insert.
Inserting an image contained in an Image variable Hide the details
<Result> = gImage(<Image> [, <Mode>])
<Result>: Character string Sequence of characters in the following format: <Image identifier>, <Drawing rank>. <Image>: Image variable Name of the Image variable to insert. <Mode>: Optional Integer constant Image display mode: | | imgCentered | Centered: Image centered in the control.
| imgHC | Homothetic centered: Image enlarged or reduced while respecting the proportions of the initial image to be entirely displayed in the control and centered in the control.
| imgHCE | Homothetic extended centered: Image enlarged or reduced in size, respecting the proportions of the original image, so that the smaller side of the image is displayed entirely in the field and the image is centered in the field..
| imgHCWIS | Homothetic without increasing size: If the image can be entirely displayed in the control, it is displayed at 100% and centered in the control. Otherwise, it is downsized, while maintaining its aspect ratio to fit and appear centered in the control. | imgHE | Homothetic extended: Image enlarged or reduced while respecting the proportions of the initial image in order for the smallest side of the image to be entirely displayed in the control.
| imgHWIS | Homothetic without increasing size: If the image can be entirely displayed in the control, it is displayed at 100%. Otherwise, it is downsized, while maintaining its aspect ratio to fit the control. | imgNormal | 100%: Image displayed at 100% in the upper-left corner of the control.
| imgNoScale | In "Large fonts" mode of Windows, the image displayed in an Image control is automatically zoomed. The imgNoScale constant allows you not to zoom the image in "Large fonts" mode. This constant is useful for drawing in controls that contain a bitmap screenshot. This constant must be combined with one of the constants used to define the display mode of image. | imgStretched | Stretched: Image stretched to occupy the entire surface of the control.
|
Remarks - gImage can be used to insert an image:
- into the title and status bars of a window or into a Static Text control.
- into a Table control. In this case, the image must be inserted into a text column.
- To display a text over an image:
- Insert an image with gImage,
- Describe the background color of the text with gBackground and the Transparent constant,
- Display the text.
For example:
ListAdd(LIST_ListView, gImage(ImagePath) + gBackground(Transparent) + gCoord(0, 0) + ... "Text")
- If a row of a Combo Box control displays an image via gImage, when this row is selected, the image is re-used in the main row.
Image height (List Box or Combo Box control) The height of the image displayed in an element of a List Box or Combo Box control is truncated to the number of pixels specified when the control was created ("Style" tab of the control description). Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|