當前位置: 首頁>>代碼示例>>C#>>正文


C# TextEditor.GetLine方法代碼示例

本文整理匯總了C#中MonoDevelop.Ide.Gui.TextEditor.GetLine方法的典型用法代碼示例。如果您正苦於以下問題:C# TextEditor.GetLine方法的具體用法?C# TextEditor.GetLine怎麽用?C# TextEditor.GetLine使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在MonoDevelop.Ide.Gui.TextEditor的用法示例。


在下文中一共展示了TextEditor.GetLine方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Draw

			public override void Draw (TextEditor editor, Cairo.Context cr, Pango.Layout layout, bool selected, int startOffset, int endOffset, double y, double startXPos, double endXPos)
			{
				var line = editor.GetLine (loc.Line);
				var x = editor.ColumnToX (line, loc.Column) - editor.HAdjustment.Value + editor.TextViewMargin.XOffset + editor.TextViewMargin.TextStartPosition;

				cr.Rectangle (Math.Floor (x) + 0.5, Math.Floor (y) + 0.5 + (line == editor.GetLineByOffset (startOffset) ? editor.LineHeight - tagMarkerHeight - 1 : 0), tagMarkerWidth * cr.LineWidth, tagMarkerHeight * cr.LineWidth);

				if (HslColor.Brightness (editor.ColorStyle.PlainText.Background) < 0.5) {
					cr.SetSourceRGBA (0.8, 0.8, 1, 0.9);
				} else {
					cr.SetSourceRGBA (0.2, 0.2, 1, 0.9);
				}
				cr.Stroke ();
			}
開發者ID:vitorelli,項目名稱:monodevelop,代碼行數:14,代碼來源:CodeActionEditorExtension.cs

示例2:

			void IActionTextLineMarker.MouseHover (TextEditor editor, MarginMouseEventArgs args, TextLineMarkerHoverResult result)
			{
				if (args.Button != 0)
					return;
				var line = editor.GetLine (loc.Line);
				if (line == null)
					return;
				var x = editor.ColumnToX (line, loc.Column) - editor.HAdjustment.Value + editor.TextViewMargin.TextStartPosition;
				var y = editor.LineToY (line.LineNumber + 1) - editor.VAdjustment.Value;
				if (args.X - x >= 0 * editor.Options.Zoom && 
				    args.X - x < tagMarkerWidth * editor.Options.Zoom && 
				    args.Y - y < (editor.LineHeight / 2) * editor.Options.Zoom) {
					result.Cursor = null;
					Popup ();
				} else {
					codeActionEditorExtension.CancelSmartTagPopupTimeout ();
				}
			}
開發者ID:vitorelli,項目名稱:monodevelop,代碼行數:18,代碼來源:CodeActionEditorExtension.cs

示例3: GetSelectedLines

		static IEnumerable<IDocumentLine> GetSelectedLines (TextEditor textEditor)
		{
			if (!textEditor.IsSomethingSelected) {
				yield return textEditor.GetLine (textEditor.CaretLine);
				yield break;
            }
			var selection = textEditor.SelectionRegion;
			var line = textEditor.GetLine(selection.EndLine);
			if (selection.EndColumn == 1 && textEditor.SelectionLeadOffset < textEditor.SelectionAnchorOffset)
				line = line.PreviousLine;
			
			while (line != null && line.LineNumber >= selection.BeginLine) {
				yield return line;
				line = line.PreviousLine;
			}
		}
開發者ID:zenek-y,項目名稱:monodevelop,代碼行數:16,代碼來源:TextEditorViewContent.cs


注:本文中的MonoDevelop.Ide.Gui.TextEditor.GetLine方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。