MESCIUS SPREAD for Windows Forms 15.0J
GetRightmostCharacters メソッド
使用例 

返す文字数
右端の文字から開始して指定した数の文字を取得します。
構文
'宣言
 
Public Overridable Function GetRightmostCharacters( _
   ByVal count As Integer _
) As String
public virtual string GetRightmostCharacters( 
   int count
)

パラメータ

count
返す文字数

戻り値の型

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

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

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

使用例
control.Text="Getrightmostcharactertest";
stringstr=control.GetRightmostCharacters(8);
textBox1.Text=str;
DimstrAsString
control.Text="Getrightmostcharactertest"
str=control.GetRightmostCharacters(8)
TextBox1.Text=str
参照

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

 

 


© MESCIUS inc. All rights reserved.