XlsxWorkbookStylesValueHelpers

XlsxWorkbookStylesValueHelpers

Overview

XlsxWorkbookStylesValueHelpers is a class in Aspose.Cells FOSS for Java.

Provides helper methods for parsing and formatting workbook style values.

This class provides 8 methods for working with XlsxWorkbookStylesValueHelpers objects in Java programs. Available methods include: bordersEqual, fontEquals, getBorderStyleName, getHorizontalAlignmentName, getVerticalAlignmentName, isEmptyColor, parseBorderStyle, toArgbHex. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package.

Methods

SignatureDescription
parseBorderStyle(value: String)BorderStyleParses a border style string into a {@link BorderStyle} enum.
getBorderStyleName(value: BorderStyle)StringGets the string representation of a {@link BorderStyle}.
getHorizontalAlignmentName(value: HorizontalAlignment)StringGets the string representation of a {@link HorizontalAlignment}.
getVerticalAlignmentName(value: VerticalAlignment)StringGets the string representation of a {@link VerticalAlignment}.
toArgbHex(color: ColorValue)StringConverts a {@link ColorValue} to an ARGB hex string (e.g.
isEmptyColor(color: ColorValue)booleanChecks if a {@link ColorValue} is empty (all components are zero).
fontEquals(left: FontValue, right: FontValue)booleanCompares two {@link FontValue} instances for equality.
bordersEqual(left: BordersValue, right: BordersValue)booleanCompares two {@link BordersValue} instances for equality.

See Also