Hi, I made this button in the ribbon turning feature layer on/off:
Is it possible to add a shortcut to the button, so the user can user the keyboard?
Solved! Go to Solution.
Hi,
Open your project config.daml file. Locate your button. Check for daml attribute "keytip". If it doesn't exist, add.
<button id="AddInInfoManager_ShowDamlVersion" caption="ShowDamlVersion" className="ShowDamlVersion" loadOnClick="true" smallImage="Images\GenericButtonBlue16.png" largeImage="Images\GenericButtonBlue32.png" keytip="B1">
<tooltip heading="Tooltip Heading">Tooltip text<disabledText /></tooltip>
</button>
More info about button attributes here
Hi,
Open your project config.daml file. Locate your button. Check for daml attribute "keytip". If it doesn't exist, add.
<button id="AddInInfoManager_ShowDamlVersion" caption="ShowDamlVersion" className="ShowDamlVersion" loadOnClick="true" smallImage="Images\GenericButtonBlue16.png" largeImage="Images\GenericButtonBlue32.png" keytip="B1">
<tooltip heading="Tooltip Heading">Tooltip text<disabledText /></tooltip>
</button>
More info about button attributes here
Great 🙂
That worked.