HighlightOptions
HighlightOptions(int)
Initializes a new instance of the HighlightOptions
class which is used to extract a fixed-length highlight.
public HighlightOptions(int maxLength)
Parameter | Type | Description |
---|---|---|
maxLength | Int32 | The maximum text length. |
See Also
- class HighlightOptions
- namespace GroupDocs.Parser.Options
- assembly GroupDocs.Parser
HighlightOptions(int?, bool)
Initializes a new instance of the HighlightOptions
class which is used to extract a line-limited highlight.
public HighlightOptions(int? maxLength, bool isLineLimited)
Parameter | Type | Description |
---|---|---|
maxLength | Nullable`1 | The maximum text length. |
isLineLimited | Boolean | The value that indicates whether the highlight extraction is limited by the start (or the end) of a text line. |
See Also
- class HighlightOptions
- namespace GroupDocs.Parser.Options
- assembly GroupDocs.Parser
HighlightOptions(int?, int)
Initializes a new instance of the HighlightOptions
class which is used to extract a highlight with the fixed word count.
public HighlightOptions(int? maxLength, int wordCount)
Parameter | Type | Description |
---|---|---|
maxLength | Nullable`1 | The maximum text length. |
wordCount | Int32 | The maximum word count. |
See Also
- class HighlightOptions
- namespace GroupDocs.Parser.Options
- assembly GroupDocs.Parser
HighlightOptions(int?, int?, bool)
Initializes a new instance of the HighlightOptions
class.
public HighlightOptions(int? maxLength, int? wordCount, bool isLineLimited)
Parameter | Type | Description |
---|---|---|
maxLength | Nullable`1 | The maximum text length. |
wordCount | Nullable`1 | The maximum word count. |
isLineLimited | Boolean | The value that indicates whether the highlight extraction is limited by the start (or the end) of a text line. |
See Also
- class HighlightOptions
- namespace GroupDocs.Parser.Options
- assembly GroupDocs.Parser