is_locked عقار

is_locked عقار

صحيح يعني أنه لا يمكن تعديل الكائن عندما تكون الورقة محمية. لاحظ أن هذه القيمة لها معنى فقط إذا كانت ورقة العمل أو الكائنات الموجودة في ورقة العمل محمية.

مثال


# Sets the specified shape to unlocked state
if shape.worksheet.is_protected and shape.is_locked:
    shape.is_locked = False
# Sets the specified shape to a locked state
if shape.worksheet.is_protected and notshape.is_locked:
    shape.is_locked = True

تعريف:

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

أنظر أيضا