PowerTools SPREAD for Windows Forms 8.0J
GetLeftmostCharacters メソッド


返す文字数
左端の文字から開始して指定した文字数を取得します。
構文
'Declaration
 
Public Overridable Function GetLeftmostCharacters( _
   ByVal count As Integer _
) As String
'使用法
 
Dim instance As SuperEditBase
Dim count As Integer
Dim value As String
 
value = instance.GetLeftmostCharacters(count)
public virtual string GetLeftmostCharacters( 
   int count
)

パラメータ

count
返す文字数

戻り値の型

countパラメータで指定した文字数を含むString
解説

このメソッドは、左端から指定した数の文字を取得するときに使用します。取得する文字の数はcountパラメータで指定します。

右端から指定した数の文字を取得する場合は、GetRightmostCharactersメソッドを使用します。

control.Text="Getleftmostcharactertest";
StringStr=control.GetLeftmostCharacters(8);
textBox1.Text=Str;
DimstrAsString
control.Text="Getleftmostcharactertest"
str=control.GetLeftmostCharacters(8)
TextBox1.Text=str
参照

SuperEditBase クラス
SuperEditBase メンバ
GetRightmostCharacters メソッド

 

 


© 2004-2015, GrapeCity inc. All rights reserved.