www.pudn.com > RxRichEdit2.0.rar > RTFProperty.dfm


inherited RtfEditDlg: TRtfEditDlg 
  Left = 207 
  Top = 98 
  Width = 384 
  Caption = 'RTF Editor' 
  Menu = MainMenu1 
  PixelsPerInch = 96 
  TextHeight = 12 
  inherited btnCancel: TSpeedButton 
    Left = 208 
    Top = 271 
  end 
  inherited btnOk: TSpeedButton 
    Left = 296 
    Top = 271 
  end 
  inherited btnHelp: TSpeedButton 
    Left = 3 
    Top = 271 
  end 
  inherited DividForm: TMyFormDivider 
    Top = 252 
    Width = 371 
    Anchors = [akLeft] 
  end 
  object Memo: TRxRichEdit 
    Left = 15 
    Top = 15 
    Width = 343 
    Height = 218 
    Anchors = [akLeft, akTop, akRight, akBottom] 
    Font.Charset = GB2312_CHARSET 
    Font.Color = clWindowText 
    Font.Height = -9 
    Font.Name = 'MS Sans Serif' 
    Font.Style = [] 
    HideScrollBars = False 
    ParentFont = False 
    PopupMenu = StringEditorMenu 
    TabOrder = 0 
    WordWrap = False 
  end 
  object OpenDialog: TOpenDialog 
    DefaultExt = 'TXT' 
    Filter =  
      'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' + 
      'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*' 
    Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist, ofEnableSizing] 
    Title = 'Load string list' 
    Left = 376 
  end 
  object SaveDialog: TSaveDialog 
    Filter =  
      'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' + 
      'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*' 
    Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist, ofEnableSizing] 
    Title = 'Save string list' 
    Left = 404 
  end 
  object StringEditorMenu: TPopupMenu 
    Left = 249 
    object LoadItem: TMenuItem 
      Caption = '&Load...' 
      OnClick = FileOpen 
    end 
    object SaveItem: TMenuItem 
      Caption = '&Save...' 
      OnClick = FileSave 
    end 
  end 
  object MainMenu1: TMainMenu 
    Left = 50 
    Top = 60 
    object a1: TMenuItem 
      Caption = 'a' 
    end 
  end 
end