亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频



Column 屬性

只讀屬性,返回 TextStream 文件中當(dāng)前字符位置的列號(hào)。

object.Column

object 通常是 TextStream 對(duì)象的名稱(chēng)。

說(shuō)明

在寫(xiě)入新行字符后,但在寫(xiě)其他字符前,Column 等于 1。

下面例子舉例說(shuō)明如何使用 Column屬性:

Function GetColumn
Const ForReading =1, ForWriting =2
Dim fso, f, m
Set fso =CreateObject("Scripting.FileSystemObject")
Set f =fso.OpenTextFile("c:\testfile.txt", ForWriting, True)
f.Write "世界你好!" 
 f.Close Set f =fso.OpenTextFile("c:\testfile.txt", ForReading) m =f.ReadLine GetColumn =f.ColumnEnd Function

請(qǐng)參閱

AtEndOfLine 屬性 | AtEndOfStream 屬性 | Line 屬性

應(yīng)用于:TextStream 對(duì)象

返回首頁(yè)