-- RadioButton object properties table. tblRadioBtnProps = {}; tblRadioBtnProps.GroupID = "Group1"; tblRadioBtnProps.Value = "My Value"; tblRadioBtnProps.Checked = true; tblRadioBtnProps.Text = "Radio Button 1"; tblRadioBtnProps.FontName = "Verdana"; tblRadioBtnProps.FontSize = 10; tblRadioBtnProps.FontWeight = FW_BOLD; tblRadioBtnProps.FontItalic = false; tblRadioBtnProps.FontStrikeout = false; tblRadioBtnProps.FontScript = ANSI_CHARSET; tblRadioBtnProps.FontAntiAlias = true; tblRadioBtnProps.FontUnderline = false; tblRadioBtnProps.TextAlignment = ALIGN_LEFT; tblRadioBtnProps.ButtonAlignment = BTN_ALIGN_LEFT; tblRadioBtnProps.ReadOrder = READ_STANDARD; tblRadioBtnProps.Cursor = CURSOR_ARROW; tblRadioBtnProps.TooltipText = ""; tblRadioBtnProps.Y = 0; tblRadioBtnProps.X = 0; tblRadioBtnProps.Height = 15; tblRadioBtnProps.Width = 200; tblRadioBtnProps.Enabled = true; tblRadioBtnProps.Visible = true; tblRadioBtnProps.ResizeLeft = false; tblRadioBtnProps.ResizeRight = false; tblRadioBtnProps.ResizeTop = false; tblRadioBtnProps.ResizeBottom = false; tblRadioBtnProps.HighlightSound = SND_NONE; tblRadioBtnProps.HighlightSoundFile = ""; tblRadioBtnProps.ClickSound = SND_NONE; tblRadioBtnProps.ClickSoundFile = ""; tblRadioBtnProps.ColorNormal = Math.HexColorToNumber("000000"); tblRadioBtnProps.ColorHighlight = Math.HexColorToNumber("000000"); tblRadioBtnProps.ColorDown = Math.HexColorToNumber("000000"); tblRadioBtnProps.ColorDisabled = Math.HexColorToNumber("C0C0C0");