Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.11 KB

File metadata and controls

37 lines (24 loc) · 1.11 KB
sidebar_label hideRows()
title hideRows method
description You can learn about the hideRows method in the documentation of the DHTMLX JavaScript Spreadsheet library. Browse developer guides and API reference, try out code examples and live demos, and download a free 30-day evaluation version of DHTMLX Spreadsheet.

hideRows()

Description

@short: Hides rows

Usage

hideRows(cell?: string): void;

Parameters

  • cell - (optional) the id of the cell used to define the id of a row. If the cell id isn't passed, the currently selected cell will be used

Example

spreadsheet.hideRows("B2"); // the "2" row will be hidden 
spreadsheet.hideRows("sheet2!B2"); // the "2" row in "sheet2" will be hidden 
spreadsheet.hideRows("B2:C4"); // the rows from "2" to "4" will be hidden 

Related articles: Work with Spreadsheet

Related API: showRows()

Related sample: Spreadsheet. Hiding columns and rows via API

Change log: Added in v5.2