FillNewWindow
Adds a string line to the Stealth Info Window.
The Info Window content can be cleared with ClearInfoWindow.
Note: The SetSilentMode setting has no effect on this method — lines are always added regardless of silent mode.
Добавляет строку в информационное окно Stealth.
Содержимое информационного окна можно очистить через ClearInfoWindow.
Примечание: Настройка SetSilentMode не влияет на этот метод — строки всегда добавляются независимо от тихого режима.
procedure FillNewWindow(S: String);
Parameters:
- S — text line to add to the Info Window.
def FillNewWindow(Text: str) -> None: ...
var
TL: TStringList;
i: Integer;
begin
ClearInfoWindow;
TL := TStringList.Create;
GetShopList(TL);
if TL.Count > 0 then
for i := 0 to TL.Count - 1 do
FillNewWindow(TL.Strings[i]);
TL.Free;
end.
ClearInfoWindow()
shop = GetShopList()
for line in shop:
FillNewWindow(line)