Class WorkbookRange

java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.WorkbookRange
All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject

public class WorkbookRange extends Entity implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workbook Range.
  • Field Details

    • address

      @SerializedName(value="address", alternate="Address") @Expose @Nullable public String address
      The Address. Represents the range reference in A1-style. Address value will contain the Sheet reference (e.g. Sheet1!A1:B4). Read-only.
    • addressLocal

      @SerializedName(value="addressLocal", alternate="AddressLocal") @Expose @Nullable public String addressLocal
      The Address Local. Represents range reference for the specified range in the language of the user. Read-only.
    • cellCount

      @SerializedName(value="cellCount", alternate="CellCount") @Expose @Nullable public Integer cellCount
      The Cell Count. Number of cells in the range. Read-only.
    • columnCount

      @SerializedName(value="columnCount", alternate="ColumnCount") @Expose @Nullable public Integer columnCount
      The Column Count. Represents the total number of columns in the range. Read-only.
    • columnHidden

      @SerializedName(value="columnHidden", alternate="ColumnHidden") @Expose @Nullable public Boolean columnHidden
      The Column Hidden. Represents if all columns of the current range are hidden.
    • columnIndex

      @SerializedName(value="columnIndex", alternate="ColumnIndex") @Expose @Nullable public Integer columnIndex
      The Column Index. Represents the column number of the first cell in the range. Zero-indexed. Read-only.
    • formulas

      @SerializedName(value="formulas", alternate="Formulas") @Expose @Nullable public com.google.gson.JsonElement formulas
      The Formulas. Represents the formula in A1-style notation.
    • formulasLocal

      @SerializedName(value="formulasLocal", alternate="FormulasLocal") @Expose @Nullable public com.google.gson.JsonElement formulasLocal
      The Formulas Local. Represents the formula in A1-style notation, in the user's language and number-formatting locale. For example, the English '=SUM(A1, 1.5)' formula would become '=SUMME(A1; 1,5)' in German.
    • formulasR1C1

      @SerializedName(value="formulasR1C1", alternate="FormulasR1C1") @Expose @Nullable public com.google.gson.JsonElement formulasR1C1
      The Formulas R1C1. Represents the formula in R1C1-style notation.
    • hidden

      @SerializedName(value="hidden", alternate="Hidden") @Expose @Nullable public Boolean hidden
      The Hidden. Represents if all cells of the current range are hidden. Read-only.
    • numberFormat

      @SerializedName(value="numberFormat", alternate="NumberFormat") @Expose @Nullable public com.google.gson.JsonElement numberFormat
      The Number Format. Represents Excel's number format code for the given cell.
    • rowCount

      @SerializedName(value="rowCount", alternate="RowCount") @Expose @Nullable public Integer rowCount
      The Row Count. Returns the total number of rows in the range. Read-only.
    • rowHidden

      @SerializedName(value="rowHidden", alternate="RowHidden") @Expose @Nullable public Boolean rowHidden
      The Row Hidden. Represents if all rows of the current range are hidden.
    • rowIndex

      @SerializedName(value="rowIndex", alternate="RowIndex") @Expose @Nullable public Integer rowIndex
      The Row Index. Returns the row number of the first cell in the range. Zero-indexed. Read-only.
    • text

      @SerializedName(value="text", alternate="Text") @Expose @Nullable public com.google.gson.JsonElement text
      The Text. Text values of the specified range. The Text value will not depend on the cell width. The # sign substitution that happens in Excel UI will not affect the text value returned by the API. Read-only.
    • values

      @SerializedName(value="values", alternate="Values") @Expose @Nullable public com.google.gson.JsonElement values
      The Values. Represents the raw values of the specified range. The data returned could be of type string, number, or a boolean. Cell that contain an error will return the error string.
    • valueTypes

      @SerializedName(value="valueTypes", alternate="ValueTypes") @Expose @Nullable public com.google.gson.JsonElement valueTypes
      The Value Types. Represents the type of data of each cell. The possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error. Read-only.
    • format

      @SerializedName(value="format", alternate="Format") @Expose @Nullable public WorkbookRangeFormat format
      The Format. Returns a format object, encapsulating the range's font, fill, borders, alignment, and other properties. Read-only.
    • sort

      @SerializedName(value="sort", alternate="Sort") @Expose @Nullable public WorkbookRangeSort sort
      The Sort. The worksheet containing the current range. Read-only.
    • worksheet

      @SerializedName(value="worksheet", alternate="Worksheet") @Expose @Nullable public WorkbookWorksheet worksheet
      The Worksheet. The worksheet containing the current range. Read-only.
  • Constructor Details

    • WorkbookRange

      public WorkbookRange()
  • Method Details

    • setRawObject

      public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json)
      Sets the raw JSON object
      Specified by:
      setRawObject in interface com.microsoft.graph.serializer.IJsonBackedObject
      Overrides:
      setRawObject in class Entity
      Parameters:
      serializer - the serializer
      json - the JSON object to set this object to