WriteLong

Last Modified: 1/18/2021

Writes Data to the DataPtr&.

Arguments

NameTypeRequiredDescription
Data Integer Yes The Data you wish to write.

Example

Syntax: WriteLong <Data>[, <Data>]
    Dim a&(5) As Long
    
    b& = VarPtr&(a&)
    DataPtr& = b&
    
    WriteLong 1,2,3,4,5,6
    
    For n = 0 To 5
        Print a&(n)
    Next

Remarks

The size of the Data is long word length (Long).

See Also

Write, WriteInt