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]
|
ColWidthTypeNames[lCol^.ColWidthType]
|
||||||
]));
|
]));
|
||||||
UpdateFormatProperties(lCol^.FormatIndex, AStrings);
|
UpdateFormatProperties(lCol^.FormatIndex, AStrings);
|
||||||
|
AStrings.Add(Format('Hidden=%s', [
|
||||||
|
BoolToStr(lCol^.Hidden, true)
|
||||||
|
]));
|
||||||
end else
|
end else
|
||||||
begin
|
begin
|
||||||
AStrings.Add('No column record=');
|
AStrings.Add('No column record=');
|
||||||
@@ -3831,6 +3834,9 @@ begin
|
|||||||
RowHeightTypeNames[lRow^.RowHeightType]
|
RowHeightTypeNames[lRow^.RowHeightType]
|
||||||
]));
|
]));
|
||||||
UpdateFormatProperties(lRow^.FormatIndex, AStrings);
|
UpdateFormatProperties(lRow^.FormatIndex, AStrings);
|
||||||
|
AStrings.Add(Format('Hidden=%s', [
|
||||||
|
BoolToStr(lRow^.Hidden, true)
|
||||||
|
]));
|
||||||
end else
|
end else
|
||||||
begin
|
begin
|
||||||
AStrings.Add('No row record=');
|
AStrings.Add('No row record=');
|
||||||
|
Reference in New Issue
Block a user