使用 IntraWeb (28) - 基本控制項之 TIWTemplateProcessorHTML、TIWLayoutMgrHTML、TIWLayoutMgrForm

來源:互聯網
上載者:User

標籤:style   class   http   com   使用   檔案   


TIWTemplateProcessorHTML //使用外部的 html 檔案做模板TIWLayoutMgrHTML         //直接輸入 Html 文本做模板TIWLayoutMgrForm         //這應該只是內部使用的東西, 對使用者沒有意義{需要把它們關聯到表單的 LayoutMgr 屬性; 主模板需要通過 IWServerController.MasterTemplate 指定}

TIWTemplateProcessorHTML 所在單元及繼承鏈:
IWTemplateProcessorHTML.TIWTemplateProcessorHTML < TIWContainerLayout < TIWBaseContainerLayout < TIWBaseLayoutComponent < TIWVCLComponent < TComponent < TPersistent < TObject

主要成員:
property Enabled: Boolean       //使用或禁用模板, 預設 Trueproperty MasterFormTag: Boolean//是否使用主模板, 預設是 True; 如果要使用當前模板應該讓它是 Falseproperty TagType: TIWTemplateLayoutHTMLTagType //ttBorland、ttIntraWeb(預設); 預設使用 {%控制項名%} 嵌入控制項, 如果選擇 ttBorland 則用 {#控制項名#}property Templates: TIWTemplateFiles //Templates.Default 預設指向 Templates\表單名.html(如: IWForm1.html, 要求 Utf8格式), 也可以修改它(譬如動態變換模板時)property RenderStyles: Boolean     //?property RemoveHiddenInputs: Boolean //移除隱藏控制項, 預設 Falseproperty MasterTemplate: string     //也可以指定頁面級的主模板, 但一般沒必要property OnUnknownTag: TIWUnknownTagEvent  //處理沒有對應控制項情況, 一般用於自訂標籤property OnBeforeProcess: TIWTemplateProcessEvent //property OnAfterProcess: TIWTemplateProcessEvent  //function Able: Boolean   //可通過該函數判斷模板是否可用function TemplatePathname: string; //可擷取模板的詳細地址//在模板中使用容器中的控制項: {% 容器名.控制項名 %} 

OnUnknownTag 事件測試:
//假如在模板中自訂了 {%BaiduLogo%}procedure TIWForm1.IWTemplateProcessorHTML1UnknownTag(const AName: string; var VValue: string);begin  if AName = ‘BaiduLogo‘ then    VValue := ‘<img src="http://www.baidu.com/img/baidu_sylogo1.gif"/>‘;end;


TIWLayoutMgrHTML 所在單元及繼承鏈:
IWLayoutMgrHTML.TIWLayoutMgrHTML < TIWContainerLayout < TIWBaseContainerLayout < TIWBaseLayoutComponent < TIWVCLComponent < TComponent < TPersistent < TObject

主要成員:
property HTML: TStringList //property OnUnknownTag: TIWUnknownTagEvent //

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.