Syntax
| Line$(text$,first[,last])
| ||||||||
---|---|---|---|---|---|---|---|---|---|
Description
| Returns a String containing a single line or a group of lines between first and last.
Lines are delimited by carriage return, line feed, or carriage-return/line-feed pairs.
| ||||||||
See Also
| |||||||||
Example
| Sub Main
s$ = “c”
i# = DiskFree(s$)
MsgBox “Free disk space on drive ‘” & _
s$ & “’ is: “ & i#
End Sub
|