תיעוד HotXLS

אירוע AfterRows

מתרחש לאחר שכל שורות המערך נתונים נשמרות לגיליון העבודה

תיאור

ניתן להשתמש באירוע זה להחלת עיצוב נוסף על אזור הפרטים

תחביר

TAfterRows = procedure (Sender: TObject; Range: IXLSRange) of object;
Sender TObject. מציין the TDataToXLS component that triggered the אירוע
Range IXLSRange. מייצג a טווח which contains the whole detail area

דוגמה

דוגמה זו שמה קו בין שורות באזור הפרטים

procedure TForm1.DataToXLS1AfterRows(Sender: TObject;
  Range: IXLSRange);
begin
  Range.Borders[xlInsideHorizontal].LineStyle := xlContinuous;
end;