Show / Hide Table of Contents

Enum SpreadsheetsResource.ValuesResource.GetRequest.MajorDimensionEnum

The major dimension that results should use. For example, if the spreadsheet data is: A1=1,B1=2,A2=3,B2=4, then requesting range=A1:B2,majorDimension=ROWS returns [[1,2],[3,4]], whereas requesting range=A1:B2,majorDimension=COLUMNS returns [[1,3],[2,4]].

Namespace: Google.Apis.Sheets.v4
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public enum MajorDimensionEnum

Fields

Name Description
COLUMNS

Operates on the columns of a sheet.

DIMENSIONUNSPECIFIED

The default value, do not use.

ROWS

Operates on the rows of a sheet.

In This Article
Back to top