Table Row ========= A table row has certain properties such as height. Row.height ---------- Candidate protocol:: >>> from docx.enum.table import WD_ROW_HEIGHT >>> row = table.add_row() >>> row >>> row.height_rule None >>> row.height_rule = WD_ROW_HEIGHT.EXACTLY >>> row.height None >>> row.height = Pt(24) MS API ------ https://msdn.microsoft.com/en-us/library/office/ff193915.aspx Methods ~~~~~~~ * Delete() * SetHeight() * SetLeftIndent() Properties ~~~~~~~~~~ * Alignment * AllowBreakAcrossPages * Borders * Cells * HeadingFormat * Height * HeightRule * Index * IsFirst * IsLast * LeftIndent * NestingLevel * Next * Previous * Shading * SpaceBetweenColumns WD_ROW_HEIGHT_RULE Enumeration ------------------------------ Alias: WD_ROW_HEIGHT * wdRowHeightAtLeast (1) The row height is at least a minimum specified value. * wdRowHeightAuto (0) The row height is adjusted to accommodate the tallest value in the row. * wdRowHeightExactly (2) The row height is an exact value. Schema Definitions ------------------ .. highlight:: xml ::