Package com.microsoft.graph.models
Class WorkbookRangeFormat
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.WorkbookRangeFormat
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class WorkbookRangeFormat
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workbook Range Format.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Borders.The Column Width.The Fill.The Font.The Horizontal Alignment.The Protection.The Row Height.The Vertical Alignment.The Wrap Text. -
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
-
columnWidth
@SerializedName(value="columnWidth", alternate="ColumnWidth") @Expose @Nullable public Double columnWidthThe Column Width. Gets or sets the width of all colums within the range. If the column widths are not uniform, null will be returned. -
horizontalAlignment
@SerializedName(value="horizontalAlignment", alternate="HorizontalAlignment") @Expose @Nullable public String horizontalAlignmentThe Horizontal Alignment. Represents the horizontal alignment for the specified object. The possible values are: General, Left, Center, Right, Fill, Justify, CenterAcrossSelection, Distributed. -
rowHeight
The Row Height. Gets or sets the height of all rows in the range. If the row heights are not uniform null will be returned. -
verticalAlignment
@SerializedName(value="verticalAlignment", alternate="VerticalAlignment") @Expose @Nullable public String verticalAlignmentThe Vertical Alignment. Represents the vertical alignment for the specified object. The possible values are: Top, Center, Bottom, Justify, Distributed. -
wrapText
The Wrap Text. Indicates if Excel wraps the text in the object. A null value indicates that the entire range doesn't have uniform wrap setting -
borders
@SerializedName(value="borders", alternate="Borders") @Expose @Nullable public WorkbookRangeBorderCollectionPage bordersThe Borders. Collection of border objects that apply to the overall range selected Read-only. -
fill
The Fill. Returns the fill object defined on the overall range. Read-only. -
font
The Font. Returns the font object defined on the overall range selected Read-only. -
protection
@SerializedName(value="protection", alternate="Protection") @Expose @Nullable public WorkbookFormatProtection protectionThe Protection. Returns the format protection object for a range. Read-only.
-
-
Constructor Details
-
WorkbookRangeFormat
public WorkbookRangeFormat()
-
-
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
-