Navigation:  Classes > bDataColumn >

bDataColumn:DataHighlighted

Print this Topic    Previous pageReturn to chapter overviewNext page

Purpose

A value that indicates whether the column values are highlighted.

Class

bDataColumn

Type

Access / Assign

Data Type

Logic

Description

If the column values are highlighted, then the values are drawn in a special way in the bBrowser. With the access bBrowserColumn:HighlightStyle or bBrowser:ColumnHighlightStyle can be defined how highlighting is represented.

 

bDataColumn_DataHighlighted

 

bBrowser with highlighted values of column LASTNAME

 

So that changes at this access are also shown in the browser, the column must be redrawn with the method bBrowser:Redraw(). This is only necessary if the column is inside the visible area of the browser.

Samples

In the sample below a bBrowser is created in which the column values for the field LASTNAME are highlighted.

 

LOCAL odbsCUSTOMER AS DBServer

LOCAL oBrowser     AS bBrowser

LOCAL oColumn      AS bDataColumn

 

// Create and show a bBrowser

odbsCUSTOMER := DBServer{"CUSTOMER"}

oBrowser := bBrowser{oOwner,;

                  1000,;

                  Point{0, 0},;

                  Dimension{300, 250}}

oBrowser:Use(odbsCUSTOMER)

oBrowser:Show()

 

// Highlight column LASTNAME

oColumn := oBrowser:GetColumn(#LASTNAME)

 

oColumn:HighlightStyle := bHighlightStyle{Brush{Color{COLORRED}},;

                                          BABR_NORMAL}

 

oColumn:DataHighlighted := TRUE

 

// Importand!!!

// -> Redraw bBrowser

oBrowser:Redraw()

See Also

bBrowser:ColumnHighlightStyle

bBrowser:Redraw()

bBrowserColumn:CaptionHighlighted

bBrowserColumn:FooterHighlighted

bBrowserColumn:HighlightStyle

bSample - CellGroups

 


Page url: http://www.YOURSERVER.com/index.html?bdatacolumn_datahighlighted.htm