GetTextInfo
種別 | テキスト情報 |
---|---|
説明 | 指定したテキスト情報(TI)の項目データを取得する |
構文 | GetTextInfo(Text, Item) |
引数 | Text : 取得するテキスト情報の文字列 Item : 取得するテキスト情報の項目名 |
戻り値 | テキスト情報の項目データ |
使用例 | Dim s s = GetTextInfo("②", "項目")'直接文字列と項目を指定する Dim max,i,sText,s max = GetTextData(0, 0)'テキスト数を取得する for i=0 to max sText = GetTextData(i,4)'全てのテキスト情報を取得する if sText <> "" then s = GetTextInfo(sText, "項目")’取得した文字列のTIを取得 endif next i |
実例 | |
備考 | 関連する関数(GetTextInfo、SetTextInfo) ver5.2以降 |