Package com.microsoft.graph.models
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 Summary
FieldsModifier and TypeFieldDescriptioncom.google.gson.JsonElementThe Cell Addresses.The Column Count.com.google.gson.JsonElementThe Formulas.com.google.gson.JsonElementThe Formulas Local.com.google.gson.JsonElementThe Formulas R1C1.The Index.com.google.gson.JsonElementThe Number Format.The Row Count.The Rows.com.google.gson.JsonElementThe Text.com.google.gson.JsonElementThe Values.com.google.gson.JsonElementThe Value Types. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
cellAddresses
@SerializedName(value="cellAddresses", alternate="CellAddresses") @Expose @Nullable public com.google.gson.JsonElement cellAddressesThe Cell Addresses. Represents the cell addresses -
columnCount
@SerializedName(value="columnCount", alternate="ColumnCount") @Expose @Nullable public Integer columnCountThe Column Count. Returns the number of visible columns. Read-only. -
formulas
@SerializedName(value="formulas", alternate="Formulas") @Expose @Nullable public com.google.gson.JsonElement formulasThe Formulas. Represents the formula in A1-style notation. -
formulasLocal
@SerializedName(value="formulasLocal", alternate="FormulasLocal") @Expose @Nullable public com.google.gson.JsonElement formulasLocalThe 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 formulasR1C1The Formulas R1C1. Represents the formula in R1C1-style notation. -
index
The Index. Index of the range. -
numberFormat
@SerializedName(value="numberFormat", alternate="NumberFormat") @Expose @Nullable public com.google.gson.JsonElement numberFormatThe Number Format. Represents Excel's number format code for the given cell. Read-only. -
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 textThe 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 valuesThe 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 valueTypesThe 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 rowsThe 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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-