CellArea

Overview

CellArea is a struct in Aspose.Cells FOSS for .NET. Inherits from: IComparable.

Represents cell area.

This struct provides 3 methods for working with CellArea objects in Go programs. Available methods include: CompareTo, CreateCellArea, ToString. All exported members are accessible to any Go application after adding the package via go get github.com/aspose-pdf-foss/aspose-pdf-foss-for-go. Properties: EndColumn, EndRow, StartColumn, StartRow.

Properties

NameTypeAccessDescription
StartRowintRead/WriteGets or sets the start row.
EndRowintRead/WriteGets or sets the end row.
StartColumnintRead/WriteGets or sets the start column.
EndColumnintRead/WriteGets or sets the end column.

Methods

SignatureDescription
CreateCellArea(startRow: int, startColumn: int, endRow: int, endColumn: int)The cell area.
CreateCellArea(startCellName: string, endCellName: string)The cell area.
CompareTo(obj: object)The compare result.
ToString()The text.

See Also