There is a column in the ElXTree designated as Custom, and it has UseOwnStyle := True;
Style.Control := TElXCellCheckBox.Create();
TElXCellCheckBox(Style.Control).Alignment := taCenter;
with TElXCellCheckBox(Control) do
begin
AllowGrayed := False;
end;
Captions are not used, so there is no visible text.
However, when printed, the cell should display T/F or Y/N or Yes/No, etc.
Is it possible to do this printing without having the values T/F visible in the main tree?
If so, what is a good way of doing it?
Thanks.
Raymond
Comments