| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | object CopyParamCustomDialog: TCopyParamCustomDialog  Left = 374  Top = 167  HelpType = htKeyword  HelpKeyword = 'ui_transfer_custom'  BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]  BorderStyle = bsDialog  Caption = 'Transfer settings'  ClientHeight = 515  ClientWidth = 420  Color = clBtnFace  ParentFont = True  OldCreateOrder = False  Position = poOwnerFormCenter  OnCloseQuery = FormCloseQuery  DesignSize = (    420    515)  PixelsPerInch = 96  TextHeight = 13  object OkButton: TButton    Left = 168    Top = 482    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Caption = 'OK'    Default = True    ModalResult = 1    TabOrder = 1  end  object CancelButton: TButton    Left = 252    Top = 482    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Cancel = True    Caption = 'Cancel'    ModalResult = 2    TabOrder = 2  end  inline CopyParamsFrame: TCopyParamsFrame    Left = 0    Top = 0    Width = 420    Height = 477    HelpType = htKeyword    TabOrder = 0  end  object HelpButton: TButton    Left = 336    Top = 482    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Caption = 'Help'    TabOrder = 3    OnClick = HelpButtonClick  endend
 |