Command - getEnabled

 

Sets the enabled state of a control.

 

 

Sample Ribbon XML file: 

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
    <commands>
        <command idMso="Cut" onAction="CallbackCut"
          getEnabled="CallbackGetEnabled"/>
        <command idMso="Copy" onAction="CallbackCopy"/>
    </commands>
</customUI>

Function to be copied to a standard module:

Option Compare Database
Option Explicit
  
Public bolEnabled As Boolean
  
Sub CallbackGetEnabled(control As IRibbonControl, _
                       ByRef enabled)
' Callback getEnabled
    enabled = bolEnabled
End Sub 




Back