`a:tcPr` custom element class
| 361 | |
| 362 | |
| 363 | class CT_TableCellProperties(BaseOxmlElement): |
| 364 | """`a:tcPr` custom element class""" |
| 365 | |
| 366 | eg_fillProperties = ZeroOrOneChoice( |
| 367 | ( |
| 368 | Choice("a:noFill"), |
| 369 | Choice("a:solidFill"), |
| 370 | Choice("a:gradFill"), |
| 371 | Choice("a:blipFill"), |
| 372 | Choice("a:pattFill"), |
| 373 | Choice("a:grpFill"), |
| 374 | ), |
| 375 | successors=("a:headers", "a:extLst"), |
| 376 | ) |
| 377 | anchor: MSO_VERTICAL_ANCHOR | None = OptionalAttribute( # pyright: ignore[reportAssignmentType] |
| 378 | "anchor", MSO_VERTICAL_ANCHOR |
| 379 | ) |
| 380 | marL: Length | None = OptionalAttribute( # pyright: ignore[reportAssignmentType] |
| 381 | "marL", ST_Coordinate32 |
| 382 | ) |
| 383 | marR: Length | None = OptionalAttribute( # pyright: ignore[reportAssignmentType] |
| 384 | "marR", ST_Coordinate32 |
| 385 | ) |
| 386 | marT: Length | None = OptionalAttribute( # pyright: ignore[reportAssignmentType] |
| 387 | "marT", ST_Coordinate32 |
| 388 | ) |
| 389 | marB: Length | None = OptionalAttribute( # pyright: ignore[reportAssignmentType] |
| 390 | "marB", ST_Coordinate32 |
| 391 | ) |
| 392 | |
| 393 | def _new_gradFill(self): |
| 394 | return CT_GradientFillProperties.new_gradFill() |
| 395 | |
| 396 | |
| 397 | class CT_TableCol(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…