public virtual string GetRightmostCharacters( int count )
'Declaration Public Overridable Function GetRightmostCharacters( _ ByVal count As Integer _ ) As String
'使用法 Dim instance As SuperEditBase Dim count As Integer Dim value As String value = instance.GetRightmostCharacters(count)
このメソッドは、右端から指定した数の文字を取得するときに使用します。取得する文字の数は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 メソッド
© 2004-2015, GrapeCity inc. All rights reserved.