You've already forked lazarus-ccr
fpspreadsheet: Show hidden state of rows/columns in TsSpreadsheetInspector
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6634 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -3789,6 +3789,9 @@ begin
|
||||
ColWidthTypeNames[lCol^.ColWidthType]
|
||||
]));
|
||||
UpdateFormatProperties(lCol^.FormatIndex, AStrings);
|
||||
AStrings.Add(Format('Hidden=%s', [
|
||||
BoolToStr(lCol^.Hidden, true)
|
||||
]));
|
||||
end else
|
||||
begin
|
||||
AStrings.Add('No column record=');
|
||||
@ -3831,6 +3834,9 @@ begin
|
||||
RowHeightTypeNames[lRow^.RowHeightType]
|
||||
]));
|
||||
UpdateFormatProperties(lRow^.FormatIndex, AStrings);
|
||||
AStrings.Add(Format('Hidden=%s', [
|
||||
BoolToStr(lRow^.Hidden, true)
|
||||
]));
|
||||
end else
|
||||
begin
|
||||
AStrings.Add('No row record=');
|
||||
|
Reference in New Issue
Block a user