SPC Function
Used with the Print or PrintLine function to position output.
Public Function SPC(ByVal Count As Short) As SPCInfo
If Count is less than the output line width, the next print position immediately follows the number of spaces printed. If Count is greater than the output line width, SPC calculates the next print position using the formula:
currentprintposition(+(Count Mod width))
For example, if the current print position is 24, the output line width is 80, and you specify SPC(90), the next print will start at position 34 (current print position + the remainder of 90/80). If the difference between the current print position and the output line width is less than Count (or Count Mod width), the SPC function skips to the beginning of the next line and generates spaces equal to Count – (width – currentprintposition).
Note:
|
|---|
|
Make sure your tabular columns are wide enough to accommodate wide letters. |
Namespace: Microsoft.VisualBasic
Module: FileSystem
Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)
Note: