“Fügen Sie in Python PPTX Grenze zu Tabelle hinzu” Code-Antworten

Fügen Sie in Python PPTX Grenze zu Tabelle hinzu


from pptx.oxml.xmlchemy import OxmlElement

def SubElement(parent, tagname, **kwargs):
        element = OxmlElement(tagname)
        element.attrib.update(kwargs)
        parent.append(element)
        return element

def _set_cell_border(cell, border_color="000000", border_width='12700'):
    tc = cell._tc
    tcPr = tc.get_or_add_tcPr()
    for lines in ['a:lnL','a:lnR','a:lnT','a:lnB']:
        ln = SubElement(tcPr, lines, w=border_width, cap='flat', cmpd='sng', algn='ctr')
        solidFill = SubElement(ln, 'a:solidFill')
        srgbClr = SubElement(solidFill, 'a:srgbClr', val=border_color)
        prstDash = SubElement(ln, 'a:prstDash', val='solid')
        round_ = SubElement(ln, 'a:round')
        headEnd = SubElement(ln, 'a:headEnd', type='none', w='med', len='med')
        tailEnd = SubElement(ln, 'a:tailEnd', type='none', w='med', len='med')

Condemned Caterpillar

Fügen Sie in Python PPTX Grenze zu Tabelle hinzu

from pptx.dml.color import RGBColor

# cell is a table cell
# set fill type to solid color first
cell.fill.solid()

# set foreground (fill) color to a specific RGB color
cell.fill.fore_color.rgb = RGBColor(0xFB, 0x8F, 0x00)
Glorious Giraffe

Ähnliche Antworten wie “Fügen Sie in Python PPTX Grenze zu Tabelle hinzu”

Fragen ähnlich wie “Fügen Sie in Python PPTX Grenze zu Tabelle hinzu”

Weitere verwandte Antworten zu “Fügen Sie in Python PPTX Grenze zu Tabelle hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen