[This is preliminary documentation and is subject to change.]

Truncates the string but does it from the front instead of back.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static string TruncateFront(
	string stx,
	int limit
)
Visual Basic (Declaration)
Public Shared Function TruncateFront ( _
	stx As String, _
	limit As Integer _
) As String
Visual C++
public:
static String^ TruncateFront(
	String^ stx, 
	int limit
)

Parameters

stx
Type: System..::.String
The input string.
limit
Type: System..::.Int32
The maximum number of characters to be shown.

Return Value

The truncated string.

See Also