取显示的内容:
cxCheckComboBox1.Text
取已勾选的内容:
var
idx, cnt: Integer;
begin
cnt := cxCheckComboBox1.Properties.Items.Count;
for idx := 0 to cnt - 1 do
begin
if cbsChecked=cxCheckComboBox1.States[idx] then
begin
ShowMessage(cxCheckComboBox1.Properties.Items[idx].Description);
end;
end;
end;
相关文章
- 11-13使用Python如何读取字节中的位?
- 11-13如何只保留pandas DataFrame中具有多个值的行?
- 11-13代码中,使用__DATE__宏,获取程序编译时间,如何保证每次编译代码(非重新生成方式),都能更新__DATE__的值?
- 11-13sql – 如何比较一行中的重叠值?
- 11-13如何在python中获取errno值的错误消息?
- 11-13如何在Java中获取Windows’%APPDATA%位置变量的值?
- 11-13如何构造GQL不包含集合中的值?
- 11-13如何在Android中从手机的内存中读取文件?
- 11-13spring boot 如何映射json格式请求中的枚举值
- 11-13如何在eclipse 读取键盘输入的值