Shape.GetLockedProperty

Shape.GetLockedProperty method

Gets the value of locked property.

public bool GetLockedProperty(ShapeLockType type)
ParameterTypeDescription
typeShapeLockTypeThe type of the shape locked property.

Return Value

Returns the value of locked property.

Examples


[C#]
int noAdjustHandles = 0;
if (shape.GetLockedProperty(ShapeLockType.AdjustHandles))
    noAdjustHandles = 1;

See Also