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):
...
Parameter | Typ | Beschreibung |
---|---|---|
type | aspose.cells.drawing.activexcontrols.ControlType | Der Typ des Steuerelements. |
top_row | int | Zeilenindex oben links. |
top | int | Stellt den vertikalen Versatz von Shape von seiner linken Zeile in Pixeleinheiten dar. |
left_column | int | Spaltenindex oben links. |
left | int | Stellt den horizontalen Versatz von Shape von seiner linken Spalte in Pixeleinheiten dar. |
width | int | Stellt die Breite von Shape in Pixeleinheiten dar. |
height | int | Stellt 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
- Modul aspose.cells.drawing
- Klasse ShapeCollection