Previous Topic: UserCanModifyInput Property (Read Only)

Next Topic: GetInput Method


SetInput Method

Sets the string that will be piped to stdin for the UDP process.

Syntax

object.SetInput(strInput)

Owning Class

CaWUDP

Arguments

strInput - The string to be passed to stdin.

Return Value

None

Notes

Example

Dim objUDP
Set objUDP = objContext.GetUDP()
If objUDP.UserCanModifyInput Then
objUDP.SetInput(“Input String”)
End If

More information: