共用方式為


SPC 函式

更新:2007 年 11 月

搭配 Print 或 PrintLine 函式使用,以定位輸出。

Public Function SPC(ByVal Count As Short) As SPCInfo

參數

  • Count
    必要項。顯示或列印清單中下一個運算式前插入的空白數。

備註

如果 Count 小於輸出行寬度,則下一個列印位置將緊接於列印的空白之後。如果 Count 大於輸出行寬度,則 SPC 將使用下列公式來計算下一個列印位置:

currentprintposition(+(CountModwidth))

例如,如果目前的列印位置是 24,輸出行寬度是 80,而您指定 SPC(90),則下一次列印將從位置 34 開始 (目前列印位置 + 90/80 的餘數)。如果目前的列印位置及輸出行的寬度兩者之間的差異小於 Count (或 CountModwidth),則 SPC 函式會跳到下一行的開頭,並產生等於 Count – (width – currentprintposition) 的空格數。

注意事項:

請確定您表格式資料行的寬度足以容納寬字母。

範例

這個範例使用 SPC 函式在檔案和 Output 視窗中進行輸出定位。

' The SPC function can be used with the Print function.
FileOpen(1, "TESTFILE", OpenMode.Output)   ' Open file for output.
Print(1, "10 spaces between here", SPC(10), "and here.")
FileClose(1)   ' Close file.

智慧型裝置開發人員注意事項

不支援這個函式。

需求

命名空間 (Namespace)︰Microsoft.VisualBasic

**模組︰**FileSystem

組件:Visual Basic Runtime Library (在 Microsoft.VisualBasic.dll 中)

請參閱

參考

Mod 運算子 (Visual Basic)

Print、PrintLine 函式

Space 函式 (Visual Basic)

TAB 函式

FileWidth 函式