dotConnect Universal Documentation
Devart.Data.Universal Namespace / UniBlob Class / SetLength Method
The size of the UniBlob in bytes.

In This Topic
    SetLength Method
    In This Topic
    Sets length for UniBlob value.
    Syntax
    'Declaration
     
    Public Sub SetLength( _
       ByVal len As Long _
    ) 
    public void SetLength( 
       long len
    )

    Parameters

    len
    The size of the UniBlob in bytes.
    Remarks
    If the given value is less than the current length of the stream, the stream is truncated. If the given value is larger than the current length of the stream, the stream is expanded. If the stream is expanded, the contents of the stream between the old and the new length are undefined.
    See Also