Package com.microsoft.graph.models
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 Summary
FieldsModifier and TypeFieldDescriptionThe Address.The Address Local.The Cell Count.The Column Count.The Column Hidden.The Column Index.The Format.com.google.gson.JsonElementThe Formulas.com.google.gson.JsonElementThe Formulas Local.com.google.gson.JsonElementThe Formulas R1C1.The Hidden.com.google.gson.JsonElementThe Number Format.The Row Count.The Row Hidden.The Row Index.The Sort.com.google.gson.JsonElementThe Text.com.google.gson.JsonElementThe Values.com.google.gson.JsonElementThe Value Types.The Worksheet. -
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
-
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 addressLocalThe 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 cellCountThe Cell Count. Number of cells in the range. Read-only. -
columnCount
@SerializedName(value="columnCount", alternate="ColumnCount") @Expose @Nullable public Integer columnCountThe Column Count. Represents the total number of columns in the range. Read-only. -
columnHidden
@SerializedName(value="columnHidden", alternate="ColumnHidden") @Expose @Nullable public Boolean columnHiddenThe Column Hidden. Represents if all columns of the current range are hidden. -
columnIndex
@SerializedName(value="columnIndex", alternate="ColumnIndex") @Expose @Nullable public Integer columnIndexThe 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 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. -
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. -
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 rowHiddenThe Row Hidden. Represents if all rows of the current range are hidden. -
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 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. 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. The possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error. Read-only. -
format
@SerializedName(value="format", alternate="Format") @Expose @Nullable public WorkbookRangeFormat formatThe Format. Returns a format object, encapsulating the range's font, fill, borders, alignment, and other properties. Read-only. -
sort
The Sort. The worksheet containing the current range. Read-only. -
worksheet
@SerializedName(value="worksheet", alternate="Worksheet") @Expose @Nullable public WorkbookWorksheet worksheetThe 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:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-