본문 바로가기
카테고리 없음

[VB6] 공용컨트롤(MSComm) : Input

by 하늘의흐름 2017. 12. 13.
반응형

Visual Basic: MSComm Control

Visual Studio 6.0

Input Property

See Also   Example   Applies To

Returns and removes a stream of data from the receive buffer. This property is not available at design time and is read-only at run time.

Syntax

object.Input

The Input property syntax has these parts:

PartDescription
objectAn object expression that evaluates to an object in the Applies To list.


Remarks

The InputLen property determines the number of characters that are read by the Input property. Setting InputLen to 0 causes the Input property to read the entire contents of the receive buffer.

The InputMode property determines the type of data that is retrieved with the Input property. If InputMode is set to comInputModeText then the Input property returns text data in a Variant. If InputMode is comInputModeBinary then the Input property returns binary data in an array of bytes in a Variant.

Data Type

Variant


출처

https://msdn.microsoft.com/en-us/library/aa259416(v=vs.60).aspx


반응형

댓글