Compartilhar via


Propriedade habilitada (Microsoft Forms)

Especifica se um controle pode receber o foco e responder a eventos gerados pelo usuário.

Sintaxe

objeto. Habilitado [= booliano ]

A sintaxe de propriedade Habilitada tem estas partes:

Sair Descrição
objeto Obrigatório. Um objeto válido.
Boolean Opcional. Se o objeto pode responder a eventos gerados pelo usuário.

Configurações

As configurações para booliano são:

Valor Descrição
Verdadeiro O controle pode receber o foco e responder a eventos gerados pelo usuário e é acessível por meio do código (padrão).
Falso O usuário não pode interagir com o controle usando o mouse, teclas, aceleradores ou hotkeys. The control is generally still accessible through code.

Comentários

Use the Enabled property to enable and disable controls. A disabled control appears dimmed, while an enabled control does not. Also, if a control displays a bitmap, the bitmap is dimmed whenever the control is dimmed. If Enabled is False for an Image, the control does not initiate events but does not appear dimmed.

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.

You can combine the settings of the Enabled and the TabStop properties to prevent the user from selecting a command button with TAB, while still allowing the user to click the button. Definir TabStop como False significa que o botão de comando não aparecerá na ordem da guia. No entanto, se Habilitado for True, o usuário ainda poderá clicar no botão de comando, desde que TakeFocusOnClick seja definido como True.

Quando o usuário guia uma MultiPage ou TabStrip habilitada, a primeira página ou guia no controle recebe o foco. Se a primeira página ou guia de uma MultiPage ou TabStrip estiver desabilitada, a primeira página ou guia habilitada desse controle receberá o foco. Se todas as páginas ou guias de uma MultiPage ou TabStrip estiverem desabilitadas, o controle será desabilitado e não poderá receber o foco.

Se um Quadro estiver desabilitado, todos os controles que ele contém serão desabilitados.

Clicking a disabled ListBox does not initiate the Click event.

Confira também

Suporte e comentários

Tem dúvidas ou quer enviar comentários sobre o VBA para Office ou sobre esta documentação? Confira Suporte e comentários sobre o VBA para Office a fim de obter orientação sobre as maneiras pelas quais você pode receber suporte e fornecer comentários.