ICellFormat

Overview

ICellFormat is a interface in Aspose.Slides FOSS for Java.

Represents format of a table cell.

This interface provides 7 methods for working with ICellFormat objects in Java programs. Available methods include: getBorderBottom, getBorderDiagonalDown, getBorderDiagonalUp, getBorderLeft, getBorderRight, getBorderTop, getFillFormat. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: borderBottom, borderDiagonalDown, borderDiagonalUp, borderLeft, borderRight, borderTop, and 1 more.

Properties

NameTypeAccessDescription
fillFormatIFillFormatReadReturns a cell fill properties object.
borderLeftILineFormatReadReturns a left border line properties object.
borderTopILineFormatReadReturns a top border line properties object.
borderRightILineFormatReadReturns a right border line properties object.
borderBottomILineFormatReadReturns a bottom border line properties object.
borderDiagonalDownILineFormatReadReturns a top-left to bottom-right diagonal line properties object.
borderDiagonalUpILineFormatReadReturns a bottom-left to top-right diagonal line properties object.

Methods

SignatureDescription
getFillFormat()IFillFormatReturns a cell fill properties object.
getBorderLeft()ILineFormatReturns a left border line properties object.
getBorderTop()ILineFormatReturns a top border line properties object.
getBorderRight()ILineFormatReturns a right border line properties object.
getBorderBottom()ILineFormatReturns a bottom border line properties object.
getBorderDiagonalDown()ILineFormatReturns a top-left to bottom-right diagonal line properties object.
getBorderDiagonalUp()ILineFormatReturns a bottom-left to top-right diagonal line properties object.

See Also