Package com.microsoft.graph.models
Class WorkbookWorksheet
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.WorkbookWorksheet
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class WorkbookWorksheet
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workbook Worksheet.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Charts.The Name.The Names.The Pivot Tables.The Position.The Protection.The Tables.The Visibility. -
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
-
name
The Name. The display name of the worksheet. -
position
The Position. The zero-based position of the worksheet within the workbook. -
visibility
@SerializedName(value="visibility", alternate="Visibility") @Expose @Nullable public String visibilityThe Visibility. The Visibility of the worksheet. The possible values are: Visible, Hidden, VeryHidden. -
charts
@SerializedName(value="charts", alternate="Charts") @Expose @Nullable public WorkbookChartCollectionPage chartsThe Charts. Returns collection of charts that are part of the worksheet. Read-only. -
names
@SerializedName(value="names", alternate="Names") @Expose @Nullable public WorkbookNamedItemCollectionPage namesThe Names. Returns collection of names that are associated with the worksheet. Read-only. -
pivotTables
@SerializedName(value="pivotTables", alternate="PivotTables") @Expose @Nullable public WorkbookPivotTableCollectionPage pivotTablesThe Pivot Tables. Collection of PivotTables that are part of the worksheet. -
protection
@SerializedName(value="protection", alternate="Protection") @Expose @Nullable public WorkbookWorksheetProtection protectionThe Protection. Returns sheet protection object for a worksheet. Read-only. -
tables
@SerializedName(value="tables", alternate="Tables") @Expose @Nullable public WorkbookTableCollectionPage tablesThe Tables. Collection of tables that are part of the worksheet. Read-only.
-
-
Constructor Details
-
WorkbookWorksheet
public WorkbookWorksheet()
-
-
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
-