MCPcopy Index your code
hub / github.com/lxn/walk / TitleEffective

Method TitleEffective

tableviewcolumn.go:204–214  ·  view source on GitHub ↗

TitleEffective returns the effective text to display in the column header.

()

Source from the content-addressed store, hash-verified

202
203// TitleEffective returns the effective text to display in the column header.
204func (tvc *TableViewColumn) TitleEffective() string {
205 if tvc.titleOverride != "" {
206 return tvc.titleOverride
207 }
208
209 if tvc.title != "" {
210 return tvc.title
211 }
212
213 return tvc.DataMemberEffective()
214}
215
216// Visible returns if the column is visible.
217func (tvc *TableViewColumn) Visible() bool {

Callers 3

createMethod · 0.95
getLVCOLUMNMethod · 0.95
tableViewHdrWndProcFunction · 0.80

Calls 1

DataMemberEffectiveMethod · 0.95

Tested by

no test coverage detected