add_active_x_control Methode

add_active_x_control(type, top_row, top, left_column, left, width, height)

Erstellt ein Activex-Steuerelement.

Kehrt zurück

def add_active_x_control(self, type, top_row, top, left_column, left, width, height):
    ...
ParameterTypBeschreibung
typeaspose.cells.drawing.activexcontrols.ControlTypeDer Typ des Steuerelements.
top_rowintZeilenindex oben links.
topintStellt den vertikalen Versatz von Shape von seiner linken Zeile in Pixeleinheiten dar.
left_columnintSpaltenindex oben links.
leftintStellt den horizontalen Versatz von Shape von seiner linken Spalte in Pixeleinheiten dar.
widthintStellt die Breite von Shape in Pixeleinheiten dar.
heightintStellt die Höhe von Shape in Pixeleinheiten dar.

Beispiel

from aspose.cells.drawing.activexcontrols import ControlType

# add an ActiveX control
activeXControl = shapes.add_active_x_control(ControlType.CHECK_BOX, 1, 0, 1, 0, 100, 50)

Siehe auch