What Set Row Width ?
Fr3 Cross-tab OnCalcWidth
procedure iOnCalcWidth(ColumnIndex: Integer; ColumnValues: Variant; var Width: Extended);
begin
end;
Row Index What ?
procedure iOnCalcWidth(ColumnIndex: Integer; ColumnValues: Variant; var Width: Extended);
begin
end;
Row Index What ?
Comments
within the matrix internal code finds the widest value for the row header and if the contents of the row header is greater than the max width then the width of the rowheader is set to maxwidth and the row header is stretched verticallyand wordwrapped, and the rest of the cells for that row are set to the same height,
and the width for all the row headers is set to the max width.
the internall code makes a number of passes through the data before it actually outputs the matrix to the page.
I am not sure of what we can manipulate from the data returned by this event
as i have not had time to test all the possibilities.
maybe if you explained what you are trying to set and why i can find a solution.