События
Присоединение к вызову ИИ Навыков
8 апр., 15 - 28 мая, 07
Отточите свои навыки ИИ и введите подметки, чтобы выиграть бесплатный экзамен сертификации
Зарегистрируйтесь!Этот браузер больше не поддерживается.
Выполните обновление до Microsoft Edge, чтобы воспользоваться новейшими функциями, обновлениями для системы безопасности и технической поддержкой.
Примечание
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Version: Available or changed with runtime version 1.0.
Writes a specified number of bytes to the stream. Data is written in binary format.
[Written := ] OutStream.Write(Value: Time [, Length: Integer])
OutStream
Type: OutStream
An instance of the OutStream data type.
Value
Type: Time
Contains the data to be written.
[Optional] Length
Type: Integer
The number of bytes to be written. In the case of data types other than string, code, and binary, if you specify a length that differs from the size of the variable, an error message is displayed.
[Optional] Written
Type: Integer
The number of bytes that were written. If you omit this optional return value and the operation does not execute successfully, a runtime error will occur.
If the optional return value, Written, is not specified and it was not possible to write all the data, an error message is displayed.
If the return value is present, you must verify that all the data was streamed.
This example requires that you create the following variables.
var
recBinaries: Record "Company Information";
OStream: OutStream;
Tme: Time;
begin
recBinaries.Find('-');
recBinaries.Picture.CreateOutstream(OStream);
OStream.Write(Tme);
recBinaries.Modify();
end;
OutStream Data Type
Get Started with AL
Developing Extensions
События
Присоединение к вызову ИИ Навыков
8 апр., 15 - 28 мая, 07
Отточите свои навыки ИИ и введите подметки, чтобы выиграть бесплатный экзамен сертификации
Зарегистрируйтесь!