Using XML in VBA

From Ribbon Commander Documentation
Revision as of 23:56, 14 March 2013 by Rxdff15551 bb53 (Talk | contribs) (Created page with "== Introduction == Dynamic RibbonX controls are both * Serializable to XML * Instantiatable from XML == Serializing to XML == <syntaxhighlight lang="vb"> Public Sub Serializi...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Introduction

Dynamic RibbonX controls are both

  • Serializable to XML
  • Instantiatable from XML

Serializing to XML

Public Sub SerializingButton()
 
    ' Create a new button
    Dim myButton As rxButton
    Set myButton = New rxButton
 
    ' Build up state
    With myButton
        .ID = "my_button"
        .Label = "My Button"
        .Enabled = rxTrue
        .Visible = rxTrue
        .keytip = "K"
        .ScreenTip = "My button screentip"
        .supertip = "My button supertip"
 
        ' Serialize to XML
        Debug.Print .XML
    End With
 
End Sub

The following xml code is printed out to the debug window:

<button screentip="My button screentip" supertip="My button supertip" enabled="true" label="My Button" visible="true" keytip="K" id="my_button"></button>