Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/dmm/tests/integration/up-to-date-deps/deps.ts>Cliffy.Row

Lightweight Deno Module Manager
Latest
class Cliffy.Row
extends Array<T>
Re-export
import { Cliffy } from "https://deno.land/x/dmm@v2.1.2/tests/integration/up-to-date-deps/deps.ts";
const { Row } = Cliffy;

Row representation.

Type Parameters

optional
T extends ICell = ICell

Properties

protected
options: IRowOptions

Methods

align(direction: Direction, override?): this

Align row content.

border(enable: boolean, override?): this

Enable/disable cell border.

Clone row recursively with all options.

Get row alignment.

getBorder(): boolean

Check if row has border.

hasBorder(): boolean

Check if row or any child cell has border.

Static Methods

from<T extends ICell = ICell>(cells: IRow<T>): Row<T>

Create a new row. If cells is a row, all cells and options of the row will be copied to the new row.