亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? tntextactns.pas

?? Delphi知道現(xiàn)在也沒有提供Unicode支持
?? PAS
?? 第 1 頁 / 共 3 頁
字號:
    TTabAction(Action).Wrap            := TTabAction(Source).Wrap;
    TTabAction(Action).BeforeTabChange := TTabAction(Source).BeforeTabChange;
    TTabAction(Action).AfterTabChange  := TTabAction(Source).AfterTabChange;
    TTabAction(Action).OnValidateTab   := TTabAction(Source).OnValidateTab;
  end;
  // TNextTab
  if (Action is TNextTab) and (Source is TNextTab) then begin
    TNextTab(Action).LastTabCaption := TNextTab(Source).LastTabCaption;
    TNextTab(Action).OnFinish       := TNextTab(Source).OnFinish;
  end;
  // TURLAction
  if (Action is TURLAction) and (Source is TURLAction) then begin
    TURLAction(Action).URL := TURLAction(Source).URL;
  end;
  // TBrowseURL
  if (Action is TBrowseURL) and (Source is TBrowseURL) then begin
    {$IFDEF COMPILER_7_UP}
    TBrowseURL(Action).BeforeBrowse := TBrowseURL(Source).BeforeBrowse;
    TBrowseURL(Action).AfterBrowse  := TBrowseURL(Source).AfterBrowse;
    {$ENDIF}
  end;
  // TDownloadURL
  if (Action is TDownloadURL) and (Source is TDownloadURL) then begin
    TDownloadURL(Action).FileName           := TDownloadURL(Source).FileName;
    {$IFDEF COMPILER_7_UP}
    TDownloadURL(Action).BeforeDownload     := TDownloadURL(Source).BeforeDownload;
    TDownloadURL(Action).AfterDownload      := TDownloadURL(Source).AfterDownload;
    {$ENDIF}
    TDownloadURL(Action).OnDownloadProgress := TDownloadURL(Source).OnDownloadProgress;
  end;
  // TSendMail
  if (Action is TSendMail) and (Source is TSendMail) then begin
    TSendMail(Action).Text := TSendMail(Source).Text;
  end;
  // TListControlAction
  if (Action is TListControlAction) and (Source is TListControlAction) then begin
    TListControlAction(Action).ListControl := TListControlAction(Source).ListControl;
  end;
  // TListControlCopySelection
  if (Action is TListControlCopySelection) and (Source is TListControlCopySelection) then begin
    TListControlCopySelection(Action).Destination := TListControlCopySelection(Source).Destination;
  end;
end;

//-------------------------
//    TNT EXT ACTNS
//-------------------------

{ TTntCustomFileRun }

procedure TTntCustomFileRun.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntCustomFileRun.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntCustomFileRun.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntCustomFileRun.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntCustomFileRun.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntCustomFileRun.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntFileRun }

procedure TTntFileRun.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntFileRun.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntFileRun.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntFileRun.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntFileRun.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntFileRun.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditAction }

procedure TTntRichEditAction.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditAction.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditAction.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditAction.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditAction.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditAction.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditBold }

procedure TTntRichEditBold.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditBold.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditBold.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditBold.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditBold.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditBold.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditItalic }

procedure TTntRichEditItalic.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditItalic.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditItalic.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditItalic.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditItalic.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditItalic.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditUnderline }

procedure TTntRichEditUnderline.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditUnderline.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditUnderline.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditUnderline.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditUnderline.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditUnderline.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditStrikeOut }

procedure TTntRichEditStrikeOut.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditStrikeOut.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditStrikeOut.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditStrikeOut.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditStrikeOut.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditStrikeOut.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditBullets }

procedure TTntRichEditBullets.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditBullets.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditBullets.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditBullets.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditBullets.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditBullets.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditAlignLeft }

procedure TTntRichEditAlignLeft.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditAlignLeft.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditAlignLeft.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditAlignLeft.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditAlignLeft.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditAlignLeft.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditAlignRight }

procedure TTntRichEditAlignRight.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditAlignRight.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditAlignRight.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditAlignRight.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditAlignRight.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditAlignRight.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntRichEditAlignCenter }

procedure TTntRichEditAlignCenter.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntRichEditAlignCenter.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntRichEditAlignCenter.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntRichEditAlignCenter.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntRichEditAlignCenter.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntRichEditAlignCenter.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntTabAction }

procedure TTntTabAction.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntTabAction.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntTabAction.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntTabAction.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntTabAction.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntTabAction.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntPreviousTab }

procedure TTntPreviousTab.Assign(Source: TPersistent);
begin
  inherited;
  TntExtActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntPreviousTab.DefineProperties(Filer: TFiler);
begin
  inherited;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品一区二区不卡| 欧美一区二区久久| 免费在线观看一区| 欧美美女直播网站| 在线亚洲高清视频| 激情图区综合网| 美日韩黄色大片| 亚洲成av人片一区二区梦乃| 综合久久国产九一剧情麻豆| 久久久久久久综合狠狠综合| 午夜精品久久久久久久99樱桃| 国产精品久久久99| 精品国产乱码久久久久久蜜臀| 青青青爽久久午夜综合久久午夜| 日韩美女啊v在线免费观看| 成人免费视频视频| 精品一区二区三区香蕉蜜桃| 91成人国产精品| 国产盗摄一区二区| 99久久久久久| 成人国产亚洲欧美成人综合网| av资源站一区| 国产福利一区二区三区在线视频| 精品在线视频一区| 蜜臀久久99精品久久久久宅男| 久久综合久久99| 欧美一级在线视频| 欧美亚洲高清一区二区三区不卡| 欧美三区在线观看| 99精品国产视频| 色综合夜色一区| 成人黄色777网| 91福利在线免费观看| www.av亚洲| 日韩高清在线不卡| 国产91精品欧美| 国产呦萝稀缺另类资源| 91美女精品福利| 国产精品亚洲第一| 欧洲一区二区三区在线| 91免费观看在线| 欧美精选午夜久久久乱码6080| 一本大道久久a久久综合| 欧美精品一区二区三区蜜桃视频| 国产精品毛片a∨一区二区三区| 久久综合久久久久88| 亚洲欧美一区二区久久| 亚洲愉拍自拍另类高清精品| 日韩和的一区二区| 日韩国产欧美在线观看| 国产成人精品一区二区三区网站观看| 国产精品影视天天线| 在线观看av不卡| 欧美精品v国产精品v日韩精品| 精品一区二区国语对白| av在线一区二区三区| 91免费观看视频在线| 欧美大度的电影原声| 亚洲精品在线电影| 亚洲图片自拍偷拍| 日本最新不卡在线| eeuss鲁片一区二区三区| 在线精品视频一区二区三四| 欧美一区二区在线观看| 日韩一区二区三区视频在线观看| 精品国产91乱码一区二区三区| 久久蜜臀精品av| 1000部国产精品成人观看| 中文字幕中文字幕一区| 亚洲综合色婷婷| 婷婷久久综合九色国产成人| 黄色日韩三级电影| 99精品一区二区| 91精品视频网| 国产精品久久国产精麻豆99网站| 另类成人小视频在线| 国产精品一级二级三级| 7777精品伊人久久久大香线蕉最新版| 亚洲欧美日韩人成在线播放| 激情另类小说区图片区视频区| 国产成人av电影在线| 精品欧美久久久| 成人免费在线播放视频| 国产成人三级在线观看| 欧美日韩一区视频| 日韩毛片视频在线看| 青青青伊人色综合久久| 欧美日韩国产成人在线免费| 精品久久久久一区| 免费不卡在线观看| 99re66热这里只有精品3直播| 国产校园另类小说区| 亚洲国产cao| 日韩一区二区三区视频| 日韩在线观看一区二区| 国产日韩欧美激情| 韩国毛片一区二区三区| 成人app网站| 国产精品成人一区二区艾草| 亚洲老妇xxxxxx| 91片在线免费观看| www成人在线观看| 国产毛片精品视频| 欧美日韩三级在线| 午夜视频在线观看一区| 成人综合婷婷国产精品久久免费| 亚洲精品一线二线三线| 亚洲一区二区三区四区的| 在线亚洲一区二区| 国产三级一区二区三区| 国产激情视频一区二区在线观看| 在线观看视频一区二区| 亚洲一区二区三区小说| 成人自拍视频在线观看| 国产午夜精品理论片a级大结局| 日本vs亚洲vs韩国一区三区二区| 豆国产96在线|亚洲| 一本大道久久a久久精二百| 亚洲一二三区视频在线观看| 国产精品系列在线观看| 国产精品欧美经典| 日韩电影在线观看网站| 亚洲伦在线观看| 国内久久精品视频| 欧美一三区三区四区免费在线看| 免费高清在线一区| 欧美妇女性影城| 精品在线免费视频| 日韩一区二区三区四区| 国产精品88888| 久久久综合激的五月天| 麻豆91精品视频| 4438x成人网最大色成网站| 久久99热国产| 欧美精品一区二区久久久| 国产乱国产乱300精品| 精品久久人人做人人爰| 成人va在线观看| 欧美激情一区不卡| 成人黄色777网| 国产精品免费观看视频| 一卡二卡欧美日韩| 日韩三级伦理片妻子的秘密按摩| 国产精品一级片| 亚洲精选一二三| 日韩免费电影网站| 久久99精品一区二区三区| 中文字幕精品一区二区三区精品| 丁香五精品蜜臀久久久久99网站| 日韩午夜三级在线| 久久黄色级2电影| 欧美一区二区三区人| 丰满亚洲少妇av| 91精品国产欧美一区二区18 | 天天色图综合网| 欧美午夜精品免费| 国产在线精品一区二区不卡了| 精品国产网站在线观看| 91老师国产黑色丝袜在线| 亚洲国产视频网站| 国产欧美综合色| 日本道免费精品一区二区三区| 久草精品在线观看| 日本一区二区高清| 欧美精品久久久久久久多人混战| 五月天国产精品| **性色生活片久久毛片| 欧美性猛交xxxxxxxx| 成人午夜免费视频| 亚洲免费观看高清完整版在线观看| 日韩欧美123| 国产麻豆一精品一av一免费 | 91福利国产精品| 亚洲成人一区在线| 久久先锋影音av鲁色资源网| 久久国内精品自在自线400部| 图片区日韩欧美亚洲| 国产精品久久国产精麻豆99网站| 在线亚洲+欧美+日本专区| 国产精品18久久久久久vr| 亚洲美腿欧美偷拍| 国产精品萝li| 成人va在线观看| 国产精品自拍一区| 中文字幕欧美一区| 91精品国产综合久久福利软件| 色婷婷av一区二区三区软件| 男男视频亚洲欧美| 午夜国产精品一区| 中文无字幕一区二区三区| 日韩视频永久免费| 成人sese在线| 成人涩涩免费视频| 麻豆国产欧美一区二区三区| 天堂va蜜桃一区二区三区| 亚洲国产精品ⅴa在线观看| 久久久久久麻豆| 成+人+亚洲+综合天堂| 国产1区2区3区精品美女| 亚洲高清不卡在线观看|