linked_cell property

linked_cell property

Gets or sets the worksheet range linked to the control’s value.

Example


if shape.linked_cell == "$B$6":
    shape.linked_cell = "A1"

Definition:

@property
def linked_cell(self):
    ...
@linked_cell.setter
def linked_cell(self, value):
    ...

See Also