AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones varias de Windows
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Copies a block of bytes or a fixed-length string from a memory address into another one. The interest of this function resides in its speed when copying strings by handling the addresses of the strings to copy.
Remark: This function is for advanced use.. You may encounter problems with the behavior of your application if the specified size or addresses are invalid.
Ejemplo
DestString is fixed string of 12000
SourceString is fixed string of 24000
TransferLength is int
TransferLength = 4096
Transfer(&DestString, &SourceString, TransferLength)
Sintaxis
Transfer(<Destination block> , <Source block> , <Length>)
<Destination block>: Address
Address of the destination block. A WLanguage error occurs if the address is invalid (NULL specifically). The memory blocks may overlap.
<Source block>: Address
Address of the source block. A WLanguage error occurs if the address is invalid (NULL specifically). The memory blocks may overlap.
<Length>: Integer
Number of bytes to copy.
Componente: wd300vm.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 28/03/2025

Señalar un error o enviar una sugerencia | Ayuda local