PrintQueueStream.SetLength(Int64) Method

Definition

Sets the length of the stream.

public:
 override void SetLength(long value);
public override void SetLength (long value);
override this.SetLength : int64 -> unit
Public Overrides Sub SetLength (value As Long)

Parameters

value
Int64

The needed length, in bytes, of the current stream.

Remarks

A stream must support both writing and seeking for SetLength to work.

Use the CanWrite property to determine whether the current instance supports writing, and use the CanSeek property to determine whether seeking is supported.

Applies to