📄 ifind.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
// <version value="$version"/>
// </file>
using System;
using System.Collections;
using System.Diagnostics;
using ICSharpCode.SharpDevelop.Gui;
namespace ICSharpCode.TextEditor.Document
{
/// <summary>
/// The basic interface for search operations in a document.
/// </summary>
public interface IFind
{
/// <value>
/// An object that implements a search algorithm.
/// </value>
ISearchStrategy SearchStrategy {
get;
set;
}
/// <value>
/// Gets the current document information
/// </value>
ProvidedDocumentInformation CurrentDocumentInformation {
get;
}
/// <value>
/// An object that provides a document loading approach.
/// </value>
IDocumentIterator DocumentIterator {
get;
set;
}
/// <value>
/// The text iterator builder which builds ITextIterator objects
/// for the find.
/// </value>
ITextIteratorBuilder TextIteratorBuilder {
get;
set;
}
/// <remarks>
/// Does a replace in the current document information. This
/// is the only method which should be used for doing replacements
/// in a searched document.
/// </remarks>
void Replace(int offset, int length, string pattern);
/// <remarks>
/// Finds next pattern.
/// <remarks>
/// <returns>
/// null if the pattern wasn't found. If it returns null the current document
/// information will be null too otherwise it will point to the document in which
/// the search pattern was found.
/// </returns>
ISearchResult FindNext(SearchOptions options);
/// <remarks>
/// Resets the find object to the original state.
/// </remarks>
void Reset();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -