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 Details

    • highlightFirstColumn

      @SerializedName(value="highlightFirstColumn", alternate="HighlightFirstColumn") @Expose @Nullable public Boolean highlightFirstColumn
      The Highlight First Column. Indicates whether the first column contains special formatting.
    • highlightLastColumn

      @SerializedName(value="highlightLastColumn", alternate="HighlightLastColumn") @Expose @Nullable public Boolean highlightLastColumn
      The Highlight Last Column. Indicates whether the last column contains special formatting.
    • legacyId

      @SerializedName(value="legacyId", alternate="LegacyId") @Expose @Nullable public String 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

      @SerializedName(value="name", alternate="Name") @Expose @Nullable public String name
      The Name. Name of the table.
    • showBandedColumns

      @SerializedName(value="showBandedColumns", alternate="ShowBandedColumns") @Expose @Nullable public Boolean showBandedColumns
      The 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 showBandedRows
      The 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 showFilterButton
      The 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 showHeaders
      The 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 showTotals
      The Show Totals. Indicates whether the total row is visible or not. This value can be set to show or remove the total row.
    • style

      @SerializedName(value="style", alternate="Style") @Expose @Nullable public String 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 columns
      The Columns. Represents a collection of all the columns in the table. Read-only.
    • rows

      @SerializedName(value="rows", alternate="Rows") @Expose @Nullable public WorkbookTableRowCollectionPage rows
      The Rows. Represents a collection of all the rows in the table. Read-only.
    • sort

      @SerializedName(value="sort", alternate="Sort") @Expose @Nullable public WorkbookTableSort sort
      The Sort. Represents the sorting for the table. Read-only.
    • worksheet

      @SerializedName(value="worksheet", alternate="Worksheet") @Expose @Nullable public WorkbookWorksheet worksheet
      The 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:
      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