;the "Format | List..." menu command, the "Simple bulleted" tab, the "Picture Size..." button

object BulPicSizeForm: TBulPicSizeForm
  Caption = 'Tamaño de la imagen de viñeta'
  ClientHeight = 279
  ClientWidth = 214
  object VarBtn: TRadioButton
    Left = 10
    Top = 12
    Caption = 'Tamaño &variable (relativo al tamaño'#13'de fuente del marca de fin'#13'de párrafo correspondiente)'
    OnClick = ControlChange
  end
  object FixedBtn: TRadioButton
    Left = 10
    Top = 71
    Caption = 'Tamaño &fijo:'
    OnClick = ControlChange
  end
  object SizeEdt: TUpDownEdit
    Left = 95
    Top = 69
    SepDigits = 0
    OnValChange = ControlChange
    Increment = 1
  end
  object PreviewLbl: TLabel
    Left = 10
    Top = 102
    Caption = 'Vista previa:'
  end
  object PaintBox: TPaintBox
    Left = 10
    Top = 120
    Width = 195
    Height = 105
    OnPaint = PaintBoxPaint
  end
end