style_tablix_row
Apply the same style properties to all cells in a Power BI paginated report tablix row with a single call, replacing multiple individual cell-style updates.
Instructions
Apply the same style kwargs to every cell in a tablix row in ONE call. Replaces the 12-individual-set_textbox_style-calls-per-row pattern. row accepts: integer (0-based body row index), 'header' (first leaf with KeepWithGroup=After — the column header row), 'details' (the Details leaf row), 'header' (header row of a named row group), 'footer' (footer row when present, e.g. after add_subtotal_row). Same style kwargs as set_textbox_style (font*, color, background_color, border, padding_, writing_mode, can_grow, can_shrink, etc.). Delegates writes to set_textbox_style_bulk. Returns {tablix, row, row_index, kind, cells, changed, skipped}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row | Yes | Integer index, or one of: 'header', 'details', '<group>_header', '<group>_footer'. | |
| path | Yes | ||
| color | No | ||
| format | No | ||
| can_grow | No | ||
| font_size | No | ||
| can_shrink | No | ||
| text_align | No | ||
| font_family | No | ||
| font_weight | No | ||
| padding_top | No | ||
| tablix_name | Yes | ||
| border_color | No | ||
| border_style | No | ||
| border_width | No | ||
| padding_left | No | ||
| writing_mode | No | ||
| padding_right | No | ||
| padding_bottom | No | ||
| vertical_align | No | ||
| background_color | No |