Last active
July 30, 2019 13:09
-
-
Save rediffusion/5b46f68f09525f13442b1a1ad047dfa1 to your computer and use it in GitHub Desktop.
NOTE: Для »» `Menu` и `Dynamic Menu` подходит тоже!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub CallbackGetSize(control As IRibbonControl, ByRef size) | |
| ' Callback size | |
| ' 0 = normal | |
| ' 1 = large | |
| Select Case control.ID | |
| Case "myBtn1" | |
| size = 0 | |
| Case "myBtn2" | |
| size = 1 | |
| End Select | |
| End Sub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <button | |
| id="MyBtn1" | |
| getSize="CallbackGetSize" | |
| imageMso="BevelShapeGallery" | |
| onAction="MyButtonCallbackOnAction"/> | |
| <button | |
| id="MyBtn2" | |
| getSize="CallbackGetSize" | |
| imageMso="BevelShapeGallery" | |
| onAction="MyButtonCallbackOnAction"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment