⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ibookmarkmanager.cs

📁 c#源代码
💻 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;

namespace ICSharpCode.TextEditor.Document
{
	/// <summary>
	/// This class handles the bookmarks for a buffer
	/// </summary>
	public interface IBookMarkManager
	{
		/// <value>
		/// Contains all bookmarks as int values
		/// </value>
		ArrayList Marks {
			get;
		}
		
		/// <value>
		/// The lowest mark, if no marks exists it returns -1
		/// </value>
		int FirstMark {
			get;
		}
		
		/// <value>
		/// The highest mark, if no marks exists it returns -1
		/// </value>
		int LastMark {
			get;
		}
		
		/// <remarks>
		/// Sets the mark at the line <code>lineNr</code> if it is not set, if the
		/// line is already marked the mark is cleared.
		/// </remarks>
		void ToggleMarkAt(int lineNr);
		
		/// <remarks>
		/// Returns true if the line <code>lineNr</code> is marked
		/// </remarks>
		bool IsMarked(int lineNr);
		
		/// <remarks>
		/// Clears all bookmarks
		/// </remarks>
		void Clear();
		
		/// <remarks>
		/// returns first mark higher than <code>lineNr</code>
		/// </remarks>
		/// <returns>
		/// returns the next mark > cur, if it not exists it returns FirstMark()
		/// </returns>
		int GetNextMark(int lineNr);
		
		/// <remarks>
		/// returns first mark lower than <code>lineNr</code>
		/// </remarks>
		/// <returns>
		/// returns the next mark lower than cur, if it not exists it returns LastMark()
		/// </returns>
		int GetPrevMark(int lineNr);
		
		
		/// <remarks>
		/// Is fired before the bookmarks change
		/// </remarks>
		event EventHandler BeforeChanged;
		
		/// <remarks>
		/// Is fired after the bookmarks change
		/// </remarks>
		event EventHandler Changed;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -