程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 使用 IntraWeb (17)

使用 IntraWeb (17)

編輯:Delphi


TIWRadioButton //單選
TIWRadioGroup  //單選組
TIWCheckBox    //復選


TIWRadioButton 所在單元及繼承鏈:
IWCompRadioButton.TIWRadioButton < TIWCustomRadioButton < TIWCustomControl < TIWBaseHTMLControl < TIWBaseControl < TIWVCLBaseControl < TControl < TComponent < TPersistent < TObject

主要成員:
property Editable: Boolean //
property Checked: Boolean  //
property Group: string     //分組名; 在統一母體中的單選按鈕, 組名相同者互斥
property Value: string     //同 Caption
property Caption: TCaption //

property OnClick: TNotifyEvent
property OnAsyncClick: TIWAsyncEvent
property OnAsyncChange: TIWAsyncEvent



TIWRadioGroup 所在單元及繼承鏈:
IWCompExtCtrls.TIWRadioGroup < TIWCustomRadioGroup < TIWCustomControl < TIWBaseHTMLControl < TIWBaseControl < TIWVCLBaseControl < TControl < TComponent < TPersistent < TObject

主要成員:
property ItemIndex: Integer  //
property Items: TStringList  //
property Layout: TIWRadioGroupLayout //排列: glVertical(默認)、glHorizontal
property Confirmation: string  //

property OnClick: TNotifyEvent        //
property OnAsyncClick: TIWAsyncEvent  //
property OnAsyncChange: TIWAsyncEvent //



TIWCheckBox 所在單元及繼承鏈:
mpCheckbox.TIWCheckBox < TIWCustomCheckBox < TIWCustomControl < TIWBaseHTMLControl < TIWBaseControl < TIWVCLBaseControl < TControl < TComponent < TPersistent < TObject

主要成員:
property Confirmation: string  //
property Checked: Boolean      //
property Caption: TCaption     //
property Style: TIWCustomCheckBoxStyle //兩種不同的樣式: stNormal(默認)、stCool

property OnClick: TNotifyEvent       //
property OnAsyncClick: TIWAsyncEvent //


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved