HtmlHighlighter
내용물
[
숨다
]
HtmlHighlighter class
HTML 형식의 전체 문서 텍스트에서 검색 결과를 강조 표시하는 검색 결과 강조 표시를 나타냅니다.
[Obsolete("Please, use the DocumentHighlighter class instead.")]
public class HtmlHighlighter : Highlighter
속성
이름 | 설명 |
---|---|
OutputFormat { get; } | 출력 형식을 가져옵니다. |
비고
더 알아보기
예
이 예제는 클래스의 일반적인 사용법을 보여줍니다.
string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
// 인덱스 생성
Index index = new Index(indexFolder);
// 지정된 폴더에서 문서 인덱싱
index.Add(documentsFolder);
// '상대성 이론' 단계 검색
SearchResult result = index.Search("\"Theory of Relativity\"");
// 문서의 텍스트에서 찾은 단어 강조 표시
FoundDocument document = result.GetFoundDocument(0);
OutputAdapter outputAdapter = new FileOutputAdapter(OutputFormat.Html, "Highlighted.html");
Highlighter highlighter = new HtmlHighlighter(outputAdapter);
index.Highlight(document, highlighter);
또한보십시오
- class Highlighter
- 네임스페이스 GroupDocs.Search.Highlighters
- 집회 GroupDocs.Search