Controls collection, DashboardSection object
Represents a Dashboard radio button that enables users to select one value out of many. Radio buttons function like check boxes; however, when grouped, only one button can be selected.
This example shows how to determine which Radio button is selected from a group:
NumControls = ActiveDocument.Sections["Dashboard2"].Shapes.Count for (I = 1; I <= NumControls;I++) { if (ActiveDocument.Sections["Dashboard2"].Shapes[I].Group == "ButtonGroup") if(ActiveDocument.Sections["Dashboard2"].Controls[I].Checked==true) Alert("Radio Button"+ ActiveDocument.Sections["Dashboard2"].Controls[I].Name +" Is checked") }
Read-only: Property Group As String, Property Name As String, Property Type as BqShapeType
Read-write: AccessibilityText (Property), Alignment IProperty) As BqHorizontalAlignment, AppendObjectText (Property), Property Checked As Boolean, Property Enabled As Boolean, Property Text As String, Property VerticalAlignment As BqVerticalAlignment, Property Visible As Boolean