QTextTableCellFormat

The QTextTableCellFormat class provides formatting information for table cells in a QTextDocument . More

Inheritance diagram of PySide6.QtGui.QTextTableCellFormat

Synopsis

Functions

Detailed Description

The table cell format of a table cell in a document specifies the visual properties of the table cell.

The padding properties of a table cell are controlled by setLeftPadding() , setRightPadding() , setTopPadding() , and setBottomPadding() . All the paddings can be set at once using setPadding() .

class PySide6.QtGui.QTextTableCellFormat

PySide6.QtGui.QTextTableCellFormat(fmt)

PySide6.QtGui.QTextTableCellFormat(QTextTableCellFormat)

Parameters

Constructs a new table cell format object.

PySide6.QtGui.QTextTableCellFormat.bottomBorder()
Return type

float

Returns the bottom border width of the table cell.

PySide6.QtGui.QTextTableCellFormat.bottomBorderBrush()
Return type

PySide6.QtGui.QBrush

Returns the bottom border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.bottomBorderStyle()
Return type

BorderStyle

Returns the bottom border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.bottomPadding()
Return type

float

Gets the bottom padding of the table cell.

PySide6.QtGui.QTextTableCellFormat.leftBorder()
Return type

float

Returns the left border width of the table cell.

See also

setLeftBorder()

PySide6.QtGui.QTextTableCellFormat.leftBorderBrush()
Return type

PySide6.QtGui.QBrush

Returns the left border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.leftBorderStyle()
Return type

BorderStyle

Returns the left border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.leftPadding()
Return type

float

Gets the left padding of the table cell.

PySide6.QtGui.QTextTableCellFormat.rightBorder()
Return type

float

Returns the right border width of the table cell.

See also

setRightBorder()

PySide6.QtGui.QTextTableCellFormat.rightBorderBrush()
Return type

PySide6.QtGui.QBrush

Returns the right border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.rightBorderStyle()
Return type

BorderStyle

Returns the right border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.rightPadding()
Return type

float

Gets the right padding of the table cell.

PySide6.QtGui.QTextTableCellFormat.setBorder(width)
Parameters

width – float

Sets the left, right, top, and bottom border width of the table cell.

PySide6.QtGui.QTextTableCellFormat.setBorderBrush(brush)
Parameters

brushPySide6.QtGui.QBrush

Sets the left, right, top, and bottom border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.setBorderStyle(style)
Parameters

styleBorderStyle

Sets the left, right, top, and bottom border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.setBottomBorder(width)
Parameters

width – float

Sets the bottom border width of the table cell.

PySide6.QtGui.QTextTableCellFormat.setBottomBorderBrush(brush)
Parameters

brushPySide6.QtGui.QBrush

Sets the bottom border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.setBottomBorderStyle(style)
Parameters

styleBorderStyle

Sets the bottom border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.setBottomPadding(padding)
Parameters

padding – float

Sets the bottom padding of the table cell.

PySide6.QtGui.QTextTableCellFormat.setLeftBorder(width)
Parameters

width – float

Sets the left border width of the table cell.

PySide6.QtGui.QTextTableCellFormat.setLeftBorderBrush(brush)
Parameters

brushPySide6.QtGui.QBrush

Sets the left border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.setLeftBorderStyle(style)
Parameters

styleBorderStyle

Sets the left border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.setLeftPadding(padding)
Parameters

padding – float

Sets the left padding of the table cell.

PySide6.QtGui.QTextTableCellFormat.setPadding(padding)
Parameters

padding – float

Sets the left, right, top, and bottom padding of the table cell.

PySide6.QtGui.QTextTableCellFormat.setRightBorder(width)
Parameters

width – float

Sets the right border width of the table cell.

PySide6.QtGui.QTextTableCellFormat.setRightBorderBrush(brush)
Parameters

brushPySide6.QtGui.QBrush

Sets the right border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.setRightBorderStyle(style)
Parameters

styleBorderStyle

Sets the right border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.setRightPadding(padding)
Parameters

padding – float

Sets the right padding of the table cell.

PySide6.QtGui.QTextTableCellFormat.setTopBorder(width)
Parameters

width – float

Sets the top border width of the table cell.

PySide6.QtGui.QTextTableCellFormat.setTopBorderBrush(brush)
Parameters

brushPySide6.QtGui.QBrush

Sets the top border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.setTopBorderStyle(style)
Parameters

styleBorderStyle

Sets the top border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.setTopPadding(padding)
Parameters

padding – float

Sets the top padding of the table cell.

PySide6.QtGui.QTextTableCellFormat.topBorder()
Return type

float

Returns the top border width of the table cell.

See also

setTopBorder()

PySide6.QtGui.QTextTableCellFormat.topBorderBrush()
Return type

PySide6.QtGui.QBrush

Returns the top border brush of the table cell.

PySide6.QtGui.QTextTableCellFormat.topBorderStyle()
Return type

BorderStyle

Returns the top border style of the table cell.

PySide6.QtGui.QTextTableCellFormat.topPadding()
Return type

float

Gets the top padding of the table cell.