delphi中 Exclude的用法!?

 我来答
mit1208
2011-03-06 · TA获得超过2347个赞
知道大有可为答主
回答量:2743
采纳率:0%
帮助的人:1853万
展开全部
参数:
procedure Exclude(var S: Set; I: Ordinal);
下边实例取自Delphi XE帮助文档!
procedure TOptionsForm.btShowMessageClick(Sender: TObject);
begin
//Creates a Message Dialog with the Selected Buttons.
MessageDlg('Hello World!', mtInformation, FMsgButtons, 0);
end;

procedure TOptionsForm.CheckBoxClick(Sender: TObject);
begin
{ Check wether an option is selected and add an element into a set,
or exclude it from the set. }

if cbYes.Checked then
Include(FMsgButtons, mbYes)
else
Exclude(FMsgButtons, mbYes);

if cbNo.Checked then
Include(FMsgButtons, mbNo)
else
Exclude(FMsgButtons, mbNo);

if cbCancel.Checked then
Include(FMsgButtons, mbCancel)
else
Exclude(FMsgButtons, mbCancel);
end;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式