Skip to content

Latest commit

 

History

History
38 lines (20 loc) · 1.54 KB

Outlook.optionbutton.locked.md

File metadata and controls

38 lines (20 loc) · 1.54 KB
title ms.assetid ms.date ms.localizationpriority
OptionButton.Locked Property (Outlook Forms Script)
1138d45e-4f6f-ce01-4f73-db212d880443
06/08/2017
medium

OptionButton.Locked Property (Outlook Forms Script)

Returns or sets a Boolean that specifies whether a control can be edited. Read/write.

Syntax

expression.Locked

expression A variable that represents an OptionButton object.

Remarks

True represents that the value of the control cannot be edited. False represents that the value can be edited (default).

When a control is locked and enabled, it can still initiate events and can still receive the focus.

The Enabled and Locked properties work together to achieve the following effects:

  • If Enabled and Locked are both True, the control can receive focus and appears normally (not dimmed) in the form. The user can copy, but not edit, data in the control.

  • If Enabled is True and Locked is False, the control can receive focus and appears normally in the form. The user can copy and edit data in the control.

  • If Enabled is False and Locked is True, the control cannot receive focus and is dimmed in the form. The user can neither copy nor edit data in the control.

  • If Enabled and Locked are both False, the control cannot receive focus and is dimmed in the form. The user can neither copy nor edit data in the control.

[!includeSupport and feedback]