知道是怎么回事了, 那个GetInput是某个程序中等待用户输入字符的一个函数. 大家
知道VB中有一个InputBox(prompt[, title][, default][, xpos][, ypos][, helpfile, context])
函数吧, 当你用了他之后, 就弹出个DialogBox, 带有一个EditBox允许你输入字符
串作为函数的返回值. 这个GetInput就做类似的事情的, 可能程序本身有一个接收用
户输入的窗口, 就像AutoCAD中那样有一个命令窗口. 其实AutoCAD Lisp中就有几个
函数(GetInput [prompt]), (GetInteger [prompt]), (GetPoint [prompt]).
AutoCAD14作为ActiveX用时, 就有function GetInput(prompt: string): WidString;
function GetInteger(prompt: string): Integer;
函数