Package com.microsoft.graph.models
Class WorkbookTable
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.WorkbookTable
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class WorkbookTable
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workbook Table.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Columns.The Highlight First Column.The Highlight Last Column.The Legacy Id.The Name.The Rows.The Show Banded Columns.The Show Banded Rows.The Show Filter Button.The Show Headers.The Show Totals.The Sort.The Style.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
-
highlightFirstColumn
@SerializedName(value="highlightFirstColumn", alternate="HighlightFirstColumn") @Expose @Nullable public Boolean highlightFirstColumnThe Highlight First Column. Indicates whether the first column contains special formatting. -
highlightLastColumn
@SerializedName(value="highlightLastColumn", alternate="HighlightLastColumn") @Expose @Nullable public Boolean highlightLastColumnThe Highlight Last Column. Indicates whether the last column contains special formatting. -
legacyId
The Legacy Id. Legacy Id used in older Excle clients. The value of the identifier remains the same even when the table is renamed. This property should be interpreted as an opaque string value and should not be parsed to any other type. Read-only. -
name
The Name. Name of the table. -
showBandedColumns
@SerializedName(value="showBandedColumns", alternate="ShowBandedColumns") @Expose @Nullable public Boolean showBandedColumnsThe Show Banded Columns. Indicates whether the columns show banded formatting in which odd columns are highlighted differently from even ones to make reading the table easier. -
showBandedRows
@SerializedName(value="showBandedRows", alternate="ShowBandedRows") @Expose @Nullable public Boolean showBandedRowsThe Show Banded Rows. Indicates whether the rows show banded formatting in which odd rows are highlighted differently from even ones to make reading the table easier. -
showFilterButton
@SerializedName(value="showFilterButton", alternate="ShowFilterButton") @Expose @Nullable public Boolean showFilterButtonThe Show Filter Button. Indicates whether the filter buttons are visible at the top of each column header. Setting this is only allowed if the table contains a header row. -
showHeaders
@SerializedName(value="showHeaders", alternate="ShowHeaders") @Expose @Nullable public Boolean showHeadersThe Show Headers. Indicates whether the header row is visible or not. This value can be set to show or remove the header row. -
showTotals
@SerializedName(value="showTotals", alternate="ShowTotals") @Expose @Nullable public Boolean showTotalsThe Show Totals. Indicates whether the total row is visible or not. This value can be set to show or remove the total row. -
style
The Style. Constant value that represents the Table style. The possible values are: TableStyleLight1 thru TableStyleLight21, TableStyleMedium1 thru TableStyleMedium28, TableStyleStyleDark1 thru TableStyleStyleDark11. A custom user-defined style present in the workbook can also be specified. -
columns
@SerializedName(value="columns", alternate="Columns") @Expose @Nullable public WorkbookTableColumnCollectionPage columnsThe Columns. Represents a collection of all the columns in the table. Read-only. -
rows
@SerializedName(value="rows", alternate="Rows") @Expose @Nullable public WorkbookTableRowCollectionPage rowsThe Rows. Represents a collection of all the rows in the table. Read-only. -
sort
The Sort. Represents the sorting for the table. Read-only. -
worksheet
@SerializedName(value="worksheet", alternate="Worksheet") @Expose @Nullable public WorkbookWorksheet worksheetThe Worksheet. The worksheet containing the current table. Read-only.
-
-
Constructor Details
-
WorkbookTable
public WorkbookTable()
-
-
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
-