SpreadJS Documentation
showRowHeader Method
Whether to print the row header.
Gets or sets whether to print the row header.
Syntax
var instance = new GcSpread.Sheets.PrintInfo();
var returnValue; // Type: PrintVisibilityType
returnValue = instance.showRowHeader(value);
function showRowHeader( 
   value : PrintVisibilityType
) : PrintVisibilityType;

Parameters

value
Whether to print the row header.

Return Value

A value that determines whether to print the row header. The default value is GcSpread.Sheets.PrintVisibilityType.Inherit.
Example
This example uses the showRowHeader method.
activeSheet.setRowCount(5, GcSpread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(5, GcSpread.Sheets.SheetArea.viewport);

activeSheet.isPaintSuspended(true);
            //set value
            for (var r = 0, rc = activeSheet.getRowCount(); r < rc; r++) {
                for (var c = 0, cc = activeSheet.getColumnCount(); c < cc; c++) {
                    activeSheet.setValue(r, c, r + c);
                }
            }
activeSheet.isPaintSuspended(false);

$("#button1").click(function () {
var printInfo = activeSheet.printInfo();
printInfo.showRowHeader(GcSpread.Sheets.PrintVisibilityType.Hide);
spread.print(0);
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.