Gets a specified number of characters, starting with the rightmost character.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Function GetRightmostCharacters( _
ByVal count As Integer _
) As String |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SuperEditBase
Dim count As Integer
Dim value As String
value = instance.GetRightmostCharacters(count) |
Parameters
- count
- Number of characters to return
Return Value
String with the number of characters designated by the
count parameter
Remarks
Example
C# | Copy Code |
---|
control.Text="Getrightmostcharactertest";
stringstr=control.GetRightmostCharacters(8);
textBox1.Text=str; |
Visual Basic | Copy Code |
---|
DimstrAsString
control.Text="Getrightmostcharactertest"
str=control.GetRightmostCharacters(8)
TextBox1.Text=str |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also