Class WorkbookRangeView

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

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

    • cellAddresses

      @SerializedName(value="cellAddresses", alternate="CellAddresses") @Expose @Nullable public com.google.gson.JsonElement cellAddresses
      The Cell Addresses. Represents the cell addresses
    • columnCount

      @SerializedName(value="columnCount", alternate="ColumnCount") @Expose @Nullable public Integer columnCount
      The Column Count. Returns the number of visible columns. 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.
    • index

      @SerializedName(value="index", alternate="Index") @Expose @Nullable public Integer index
      The Index. Index of the range.
    • 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. Read-only.
    • rowCount

      @SerializedName(value="rowCount", alternate="RowCount") @Expose @Nullable public Integer rowCount
      The Row Count. Returns the number of visible rows. 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 view. 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. Read-only. The possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error.
    • rows

      @SerializedName(value="rows", alternate="Rows") @Expose @Nullable public WorkbookRangeViewCollectionPage rows
      The Rows. Represents a collection of range views associated with the range. Read-only. Read-only.
  • Constructor Details

    • WorkbookRangeView

      public WorkbookRangeView()
  • 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