|
|
|
|
|
TitleHeader (Property) In french: Surentête
The TitleHeader property is used to: - Get the title and aspect of a column title-header (Table or TreeView Table control).
- Get the number of column title-headers (Table or TreeView Table control).
- Get the title and aspect of a column title-header (Table or TreeView Table control).
Warning: This property cannot be assigned or copied directly..
COL_DATE.Surentête[2].Libellé = "Nouveau titre"
COL_DATE.Surentête[1].Libellé = "sous-titre"
COL_DATE.Surentête[1].Font.Gras = True
COL_DATE.Surentête[1].Couleur = LightRed
COL_DATE.Surentête[1].PoliceGras = True
FOR I = 1 TO COL_DATE.Surentête.Occurrence
COL_DATE.Surentête[I].Couleur = LightRed
END
Syntax
Retrieving the value of a property for a column title-header Hide the details
<Result> = <Column>.TitleHeader[<Row number>].<Property>
<Result>: Expected type Property value. <Column>: Control name Name of the Table control column used. <Row number>: Integer Number of the title-header row to use. Row 1 corresponds to the first row of column title starting from the bottom. <Property>: WLanguage property WLanguage property that will be used to handle the title-header. The available properties are:
| | BackgroundColor | Used to find out the background color of title-header. | Caption | Used to find out the text of title-header. | Color | Used to find out the text color of title-header. | Font | Used to find out the font of title-header. Note: It is possible to use the properties of the Font type directly.. | FontBold | Used to find out whether the text of title-header is bold. | FontCondensed | Used to find out whether the text of title-header is condensed. | FontExtended | Used to find out whether the text of title-header is extended. | FontItalic | Used to find out whether the text of title-header is italic. | FontLarge | Used to find out whether the text of title-header is large. | FontName | Used to find out the name of the font used for the text of title-header. | FontSize | Used to find out the size of title-header text. | FontStrikeOut | Used to find out whether the text of title-header is struck out. | FontUnderlined | Used to find out whether the text of title-header is underlined. |
Getting the number of title-headers Hide the details
<Result> = <Column>.TitleHeader.Count
<Result>: Integer Number of title-headers. <Column>: Control name Name of the Table control column used.
Modifying a property of column title-header Hide the details
<Column>.TitleHeader[<Row number>].<Property> = <Value>
<Column>: Control name Name of the Table control column used. <Row number>: Integer Number of the title-header row to use. Row 1 corresponds to the first row of column title starting from the bottom. <Property>: WLanguage property WLanguage property that will be used to handle the title-header. The available properties are:
| | BackgroundColor | Used to find out the background color of title-header. | Caption | Used to find out the text of title-header. | Color | Used to find out the text color of title-header. | Font | Used to find out the font of title-header. Note: It is possible to use the properties of the Font type directly.. | FontBold | Used to find out whether the text of title-header is bold. | FontCondensed | Used to find out whether the text of title-header is condensed. | FontExtended | Used to find out whether the text of title-header is extended. | FontItalic | Used to find out whether the text of title-header is italic. | FontLarge | Used to find out whether the text of title-header is large. | FontName | Used to find out the name of the font used for the text of title-header. | FontSize | Used to find out the size of title-header text. | FontStrikeOut | Used to find out whether the text of title-header is struck out. | FontUnderlined | Used to find out whether the text of title-header is underlined. |
<Value>: Expected type Property value.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|