AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The property Overhead property allows you 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..
Ejemplo
// Modifies the title of a title-header on row 1
COL_DATE.TitleHeader[2].Caption = "New caption"

// Modifies the title of a title-header on row 2
COL_DATE.TitleHeader[1].Caption = "Sub-title"
// Modifies the font used for the title of a title-header on row 2
COL_DATE.TitleHeader[1].Font.Bold = True

// Modifies the color of sub-title on row 1
COL_DATE.TitleHeader[1].Color = LightRed
COL_DATE.TitleHeader[1].FontBold = True
FOR I = 1 TO COL_DATE.TitleHeader.Count 
	COL_DATE.TitleHeader[1].Color = LightRed
END
Sintaxis

Retrieving the value of a property for a column title-header Ocultar los detalles

<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.
Row number
<Property>: WLanguage property
WLanguage property that will be used to handle the title-header. The available properties are:
BackgroundColorUsed to find out the background color of title-header.
CaptionUsed to find out the text of title-header.
ColorUsed to find out the text color of title-header.
FontUsed to find out the font of title-header.
Note: It is possible to use the properties of the Font type directly.
FontBoldUsed to find out whether the text of title-header is bold.
FontCondensedUsed to find out whether the text of title-header is condensed.
FontExtendedUsed to find out whether the text of title-header is extended.
FontItalicUsed to find out whether the text of title-header is italic.
FontLargeUsed to find out whether the text of title-header is large.
FontNameUsed to find out the name of the font used for the text of title-header.
FontSizeUsed to find out the size of title-header text.
FontStrikeOutUsed to find out whether the text of title-header is struck out.
FontUnderlinedUsed to find out whether the text of title-header is underlined.

Getting the number of title-headers Ocultar los detalles

<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 Ocultar los detalles

<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.
Row number
<Property>: WLanguage property
WLanguage property that will be used to handle the title-header. The available properties are:
BackgroundColorUsed to find out the background color of title-header.
CaptionUsed to find out the text of title-header.
ColorUsed to find out the text color of title-header.
FontUsed to find out the font of title-header.
Note: It is possible to use the properties of the Font type directly.
FontBoldUsed to find out whether the text of title-header is bold.
FontCondensedUsed to find out whether the text of title-header is condensed.
FontExtendedUsed to find out whether the text of title-header is extended.
FontItalicUsed to find out whether the text of title-header is italic.
FontLargeUsed to find out whether the text of title-header is large.
FontNameUsed to find out the name of the font used for the text of title-header.
FontSizeUsed to find out the size of title-header text.
FontStrikeOutUsed to find out whether the text of title-header is struck out.
FontUnderlinedUsed to find out whether the text of title-header is underlined.
<Value>: Expected type
Property value.
Versión mínima requerida
  • Versión 22
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

Señalar un error o enviar una sugerencia | Ayuda local