PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Creates a (plain text) abstract of the specified text, including the specified word(s).

Namespace: Smartsite.Runtime.Modules
Assembly:  Smartsite.Runtime.Modules (in Smartsite.Runtime.Modules.dll)

Syntax

C#Copy imageCopy Code
[(IsDeterministic = true)]
public static string Abstract(
	string text,
	int maxLength,
	string includeWords
)
Visual Basic (Declaration)Copy imageCopy Code
<(IsDeterministic := True)> _
Public Shared Function Abstract ( _
	text As , _
	maxLength As Integer, _
	includeWords As  _
) As 

Parameters

text
String
The text.
maxLength
Int32
Maximum length of the abstract.
includeWords
String
The word(s) (comma-separated) to include within the abstract.

Return Value

String containing the abstract.

See Also

Advanced