Package com.grapecity.documents.excel
Interface ITableStyleInfo
public interface ITableStyleInfo
Gets or sets the style information applied to the table.
-
Method Summary
Modifier and TypeMethodDescriptiongetName()Gets the name of the table style to use with the table.booleanGets whether column stripe formatting is applied.booleanGets whether the first column in the table should have style applied.booleanGets whether the last column in the table should have style applied.booleanGets whether row stripe formatting is applied.voidSets the name of the table style to use with the table.voidsetShowColumnStripes(boolean value) Sets whether column stripe formatting is applied.voidsetShowFirstColumn(boolean value) Sets whether the first column in the table should have style applied.voidsetShowLastColumn(boolean value) Sets whether the last column in the table should have style applied.voidsetShowRowStripes(boolean value) Sets whether row stripe formatting is applied.
-
Method Details
-
getName
String getName()Gets the name of the table style to use with the table. -
setName
Sets the name of the table style to use with the table. -
getShowColumnStripes
boolean getShowColumnStripes()Gets whether column stripe formatting is applied. -
setShowColumnStripes
void setShowColumnStripes(boolean value) Sets whether column stripe formatting is applied. -
getShowFirstColumn
boolean getShowFirstColumn()Gets whether the first column in the table should have style applied. -
setShowFirstColumn
void setShowFirstColumn(boolean value) Sets whether the first column in the table should have style applied. -
getShowLastColumn
boolean getShowLastColumn()Gets whether the last column in the table should have style applied. -
setShowLastColumn
void setShowLastColumn(boolean value) Sets whether the last column in the table should have style applied. -
getShowRowStripes
boolean getShowRowStripes()Gets whether row stripe formatting is applied. -
setShowRowStripes
void setShowRowStripes(boolean value) Sets whether row stripe formatting is applied.
-