Spread Windows Forms 6.0 Product Documentation
GetLeftmostCharacters Method
See Also  Example Support Options
FarPoint.Win Assembly > FarPoint.Win Namespace > SuperEditBase Class : GetLeftmostCharacters Method


count
Number of characters to return

Glossary Item Box

Gets a specified number of characters, starting with the leftmost character.

Syntax

Visual Basic (Declaration) 
Public Overridable Function GetLeftmostCharacters( _
   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.GetLeftmostCharacters(count)
C# 
public virtual string GetLeftmostCharacters( 
   int count
)

Parameters

count
Number of characters to return

Return Value

String with the number of characters designated by the count parameter

Remarks

Use this method to return a specified number of characters, starting from the left. Specify the number of characters to return using the count parameter.

If you want to return a specified number of characters starting from the right, use the GetRightmostCharacters method.

Example

C#Copy Code
control.Text="Getleftmostcharactertest";
StringStr=control.GetLeftmostCharacters(8);
textBox1.Text=Str;
Visual BasicCopy Code
DimstrAsString
control.Text="Getleftmostcharactertest"
str=control.GetLeftmostCharacters(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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.