You are here:   getVisible

getVisible

 

Sets a boolean value that specifies whether the control is visible or hidden.


Sample Ribbon XML file:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="CallbackOnLoad">
      <ribbon startFromScratch="false">
        <tabs>
            <tab id="Toogle Button Demo" label="Toogle Button Demo">
                <group id="MyGroup" label="Toogle Button Demo">
                    <button id="MyButton" label="I ;-)"
                      image="myImageEN.JPG" 
                      size="large" getVisible="CallbackGetVisible"/> 
                    <toggleButton id="MyToggleButton1" size="large" 
                      label="Toggle Button (An/Aus)" imageMso="HappyFace"
                      onAction="MyToggleButtonCallbackOnAction"/>
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI> 

Function to be copied to a standard module:

Option Compare Database
Option Explicit
  
Public bolVisible As Boolean
  
Sub CallbackGetVisible(control As IRibbonControl, _
                       ByRef visible)
' Callback Visible
    visible = bolVisible
End Sub

 

You can find this sample in Sample DB 2




Back

Last Updates:

19.01.2013
Update Downloads for "Trusted Locations" - Versions for Office 2013 ...


29.08.2012
Revised versions for IDBE RibbonCreator2010 (Version 1.1014a) ...

07.08.2012
Update Group Attributes and Callbacks. ...

02.08.2012
New Access FAQ added. New Download added. ...

 

Last update:
April 07, 2013, 22:24