StyleSelectionUnit.dfm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. object StyleSelectionForm: TStyleSelectionForm
  2. Left = 227
  3. Top = 141
  4. ActiveControl = CheckBox1
  5. BorderIcons = [biSystemMenu]
  6. BorderStyle = bsDialog
  7. Caption = 'Select Style'
  8. ClientHeight = 135
  9. ClientWidth = 177
  10. Color = clBtnFace
  11. Font.Charset = DEFAULT_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -11
  14. Font.Name = 'MS Sans Serif'
  15. Font.Style = []
  16. OldCreateOrder = False
  17. Position = poScreenCenter
  18. OnClose = FormClose
  19. OnShow = FormShow
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object Bevel1: TBevel
  23. Left = 8
  24. Top = 88
  25. Width = 161
  26. Height = 2
  27. Shape = bsTopLine
  28. end
  29. object CheckBox1: TCheckBox
  30. Left = 16
  31. Top = 16
  32. Width = 81
  33. Height = 17
  34. Caption = 'Custom &Style'
  35. TabOrder = 0
  36. OnClick = CheckBox1Click
  37. end
  38. object CheckBox2: TCheckBox
  39. Left = 32
  40. Top = 40
  41. Width = 49
  42. Height = 17
  43. Caption = '&Bold'
  44. Enabled = False
  45. TabOrder = 1
  46. end
  47. object CheckBox3: TCheckBox
  48. Left = 32
  49. Top = 60
  50. Width = 49
  51. Height = 17
  52. Caption = '&Italic'
  53. Enabled = False
  54. TabOrder = 2
  55. end
  56. object CheckBox4: TCheckBox
  57. Left = 96
  58. Top = 40
  59. Width = 65
  60. Height = 17
  61. Caption = '&Underline'
  62. Enabled = False
  63. TabOrder = 3
  64. end
  65. object CheckBox5: TCheckBox
  66. Left = 96
  67. Top = 60
  68. Width = 65
  69. Height = 17
  70. Caption = 'S&trike Out'
  71. Enabled = False
  72. TabOrder = 4
  73. end
  74. object Button1: TButton
  75. Left = 16
  76. Top = 100
  77. Width = 67
  78. Height = 25
  79. Caption = '&OK'
  80. Default = True
  81. ModalResult = 1
  82. TabOrder = 5
  83. end
  84. object Button2: TButton
  85. Left = 94
  86. Top = 100
  87. Width = 67
  88. Height = 25
  89. Cancel = True
  90. Caption = '&Cancel'
  91. ModalResult = 2
  92. TabOrder = 6
  93. end
  94. end