我有 StringGrid 并且只想在其中包含单元格1
或0
. 我尝试使用 StringGridGetEditMask
procedure TForm1.StringGrid1GetEditMask(Sender: TObject; ACol,
ARow: Integer; var Value: String);
begin
Value := '0';
if not (strToInt(Value) in [0,1]) then value := #0;
end;
但是我可以输入从 0 到 9 的所有数字。如何过滤除 0 和 1 之外的所有数字?