Určuje, či je pracovný list viditeľný. Čítanie/zápis Variant
property
property
Visible can be one of these constants
xlSheetVisible
| xlSheetVisible |
| Hides the sheet so that the only way for you to make it visible again is by setting this Visible: Variant; to True or xlSheetVisible (the user cannot make the sheet visible) |
| Príklad |
Visible môže byť jedna z týchto konštánt |
xlSheetHidden
Hides the sheet so that the only way for you to make it visible again is by setting this Visible: Variant; to True or xlSheetVisible (the user cannot make the sheet visible)
Workbook.Sheets[1].Visible := False;
Príklad
Workbook.Sheets[1].Visible := xlSheetVisible;
Tento príklad znepriehľadní pracovný list jedna
With Workbook.Sheets[1] do begin
if Visible = Hides the sheet so that the only way for you to make it visible again is by setting this Visible: Variant; to True or xlSheetVisible (the user cannot make the sheet visible) then
Name := 'Visible Sheet'
else
Name := 'InVisible Sheet';
end;