StringGrid

Delphi

05/01/2004

Como selecionar varias celulas??


Helder_ce

Helder_ce

Curtidas 0

Respostas

Renatosilva

Renatosilva

05/01/2004


var
Rect: TGridRect;
begin

// Left e Top é a célula inicial
Rect.Left := 0;
Rect.Top := 0;

// Right e Bottom é a célula final
Rect.Right := 4;
Rect.Bottom := 4;

StringGrid1.Selection := Rect;

end;



GOSTEI 0
POSTAR