📄 spacingrvfrm.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 + -