⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spacingrvfrm.pas

📁 richviewaction 1.58 需要richview 1.9.46
💻 PAS
字号:

{*******************************************************}
{                                                       }
{       RichViewActions                                 }
{       Cell-spacing dialog                             }
{                                                       }
{       Copyright (c) Sergey Tkachenko                  }
{       svt@trichview.com                               }
{       http://www.trichview.com                        }
{                                                       }
{*******************************************************}

unit SpacingRVFrm;

interface

{$I RichViewActions.inc}

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
  Dialogs, BaseRVFrm, FourSidesRVFrm, ExtCtrls, StdCtrls, RVSpinEdit, RVALocalize;

type
  TfrmRVSpacing = class(TfrmRVFourSides)
    Label5: TLabel;
    Label6: TLabel;
    Bevel1: TBevel;
  private
    { Private declarations }
  public
    { Public declarations }
    procedure Localize; override;
  end;

implementation

{$R *.dfm}

{ TfrmRVSpacing }

procedure TfrmRVSpacing.Localize;
begin
  inherited;
  Caption := {$IFDEF USERVTNT}_GetWideString{$ENDIF}(RVA_GetS(rvam_cs_Title));
  gb.Caption := RVA_GetSH(rvam_cs_GB);
  Label5.Caption := RVA_GetS(rvam_cs_BetweenCells);
  Label6.Caption := RVA_GetS(rvam_cs_FromTableToCell);
  lblTop.Caption := RVA_GetS(rvam_cs_Horz1);
  lblBottom.Caption := RVA_GetS(rvam_cs_Vert1);
  lblLeft.Caption := RVA_GetS(rvam_cs_Horz2);
  lblRight.Caption := RVA_GetS(rvam_cs_Vert2);
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -