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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tntextactns.pas

?? TNT Components Source
?? 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;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91亚洲精品久久久蜜桃| 激情五月播播久久久精品| 麻豆91小视频| 不卡的av电影| 久久一区二区三区四区| 五月婷婷综合激情| 性感美女极品91精品| 亚洲福利视频一区二区| 国产成人精品在线看| 欧美一区二区三区视频| 亚洲最新视频在线播放| 97精品国产97久久久久久久久久久久| 欧美一区二区三区婷婷月色 | 日韩电影免费在线观看网站| 色综合一个色综合亚洲| 国产精品久久久久久久浪潮网站| 精品午夜久久福利影院| 日韩一区二区三区在线视频| 午夜亚洲国产au精品一区二区| 91网上在线视频| 亚洲欧洲三级电影| 成人av免费观看| 国产精品久久久久久妇女6080| 精油按摩中文字幕久久| 日韩欧美视频在线| 看国产成人h片视频| 日韩一级高清毛片| 日av在线不卡| 日韩欧美电影一二三| 蜜臀精品一区二区三区在线观看| 欧美精品三级日韩久久| 青草国产精品久久久久久| 884aa四虎影成人精品一区| 五月综合激情婷婷六月色窝| 91 com成人网| 国产综合久久久久久鬼色| 日韩久久久久久| 国内精品伊人久久久久av影院| 日韩你懂的在线观看| 国产一区二区三区在线观看免费 | 91精品在线观看入口| 天天射综合影视| 日韩一级免费观看| 国产精品一区二区三区四区 | 91浏览器在线视频| 一区二区三区日韩| 欧美一区日本一区韩国一区| 欧美aa在线视频| 国产亚洲欧美激情| 色综合天天狠狠| 人人精品人人爱| 欧美国产禁国产网站cc| 欧美亚州韩日在线看免费版国语版| 亚洲综合无码一区二区| 日韩精品一区二区三区视频在线观看 | 成人欧美一区二区三区小说| 欧美日韩三级在线| 国产乱子伦一区二区三区国色天香| 国产欧美日韩不卡免费| 欧美亚洲动漫精品| 国产精品一二三区| 一区二区国产盗摄色噜噜| 日韩天堂在线观看| 99r国产精品| 免费欧美日韩国产三级电影| 国产精品毛片a∨一区二区三区| 欧美日韩激情在线| 国产精华液一区二区三区| 亚洲精品日韩综合观看成人91| 欧美日韩午夜精品| 成人国产视频在线观看| 男人的天堂久久精品| 国产精品二区一区二区aⅴ污介绍| 欧美日韩精品电影| av色综合久久天堂av综合| 日韩和欧美一区二区| 国产精品国产自产拍高清av| 6080国产精品一区二区| 色综合久久久久久久久久久| 国产一区二区不卡在线| 日本在线观看不卡视频| 中文字幕一区二区三区蜜月| 日韩免费高清视频| 在线成人av影院| 国产超碰在线一区| 久久99热这里只有精品| 亚洲国产精品自拍| 亚洲精品美腿丝袜| 中文字幕佐山爱一区二区免费| 精品伦理精品一区| 日韩欧美一区二区久久婷婷| 欧美日韩欧美一区二区| 91在线小视频| 99视频有精品| 丁香六月综合激情| 国内外成人在线| 麻豆成人免费电影| 蜜乳av一区二区| 日本中文字幕一区二区视频| 亚洲国产精品久久久久婷婷884| 中文字幕一区二区三区色视频| 久久亚洲精华国产精华液| 日韩一区二区免费在线观看| 欧美精品久久99久久在免费线| 欧美主播一区二区三区| 色狠狠综合天天综合综合| 色婷婷亚洲综合| 99re热这里只有精品免费视频| 成人三级在线视频| 成人的网站免费观看| 99久精品国产| 色婷婷狠狠综合| 在线观看免费视频综合| 欧美三级午夜理伦三级中视频| 欧美日韩一区 二区 三区 久久精品| 91成人国产精品| 正在播放亚洲一区| 日韩欧美电影在线| 国产午夜精品一区二区三区视频| 国产欧美1区2区3区| 亚洲欧美综合色| 亚洲免费在线视频| 亚洲国产美女搞黄色| 另类专区欧美蜜桃臀第一页| 国产一区二三区| 国产精品资源网| 色婷婷av一区二区三区之一色屋| 精品视频免费看| 日韩欧美国产电影| 国产日韩av一区二区| 亚洲欧洲中文日韩久久av乱码| 亚洲一区二区三区美女| 日韩—二三区免费观看av| 国产精品中文字幕日韩精品| 99久久国产综合精品色伊| 欧美日韩成人综合在线一区二区| 日韩欧美亚洲另类制服综合在线| 久久久久久久久岛国免费| 日韩毛片精品高清免费| 午夜激情综合网| 国产成+人+日韩+欧美+亚洲| 欧美在线观看视频在线| 日韩女同互慰一区二区| √…a在线天堂一区| 日日骚欧美日韩| 成人av午夜电影| 3d成人动漫网站| 国产精品视频第一区| 亚洲电影视频在线| 国产激情视频一区二区在线观看| 91麻豆国产香蕉久久精品| 欧美一区二区视频在线观看 | 亚洲精品视频在线观看网站| 国产伦精一区二区三区| 欧美日韩mp4| 午夜欧美视频在线观看| 国产午夜精品一区二区| 国产毛片精品国产一区二区三区| 亚洲第一主播视频| 在线视频综合导航| 欧美一级夜夜爽| 欧美日韩一级黄| 一区二区三区 在线观看视频| 91欧美激情一区二区三区成人| 国产精品伦一区| 99精品视频在线播放观看| 亚洲国产精品av| 99视频精品免费视频| 136国产福利精品导航| 97久久超碰国产精品电影| 中文字幕精品一区二区三区精品 | 久久久精品人体av艺术| 久久av老司机精品网站导航| 精品国产在天天线2019| 国产最新精品精品你懂的| 国产拍欧美日韩视频二区| 粉嫩av一区二区三区| 亚洲日本在线看| 欧美色图片你懂的| 免费日韩伦理电影| 久久九九全国免费| 91丨九色丨黑人外教| 亚洲午夜精品17c| 日韩精品一区二区在线| 国产精品亚洲成人| 1000精品久久久久久久久| 欧洲精品视频在线观看| 日韩av一二三| 国产欧美日韩三区| 欧美无砖专区一中文字| 欧美aⅴ一区二区三区视频| 久久久www免费人成精品| 99国产精品久久久| 日韩高清在线观看| 欧美国产日韩亚洲一区| 欧美午夜在线一二页| 精品一区二区三区免费观看| 亚洲情趣在线观看| 欧美电视剧在线看免费| k8久久久一区二区三区|