Skip to content

Instantly share code, notes, and snippets.

@rediffusion
Last active July 30, 2019 13:09
Show Gist options
  • Select an option

  • Save rediffusion/5b46f68f09525f13442b1a1ad047dfa1 to your computer and use it in GitHub Desktop.

Select an option

Save rediffusion/5b46f68f09525f13442b1a1ad047dfa1 to your computer and use it in GitHub Desktop.
NOTE: Для »» `Menu` и `Dynamic Menu` подходит тоже!
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
<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