本文整理汇总了C#中MonoTextEditor.GetLine方法的典型用法代码示例。如果您正苦于以下问题:C# MonoTextEditor.GetLine方法的具体用法?C# MonoTextEditor.GetLine怎么用?C# MonoTextEditor.GetLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MonoTextEditor
的用法示例。
在下文中一共展示了MonoTextEditor.GetLine方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Update
public override void Update (MonoTextEditor editor)
{
var startLine = editor.GetLine (start);
if (start == end) {
editor.TextViewMargin.RemoveCachedLine (startLine);
editor.RedrawLine (start);
} else {
for (int i = 0; startLine != null && i < end - start; i++) {
editor.TextViewMargin.RemoveCachedLine (startLine);
startLine = startLine.NextLine;
}
editor.RedrawLines (start, end);
}
}
示例2: DrawErrorMarkers
void DrawErrorMarkers (MonoTextEditor editor, Cairo.Context g, LineMetrics metrics, double y)
{
uint curIndex = 0, byteIndex = 0;
var o = metrics.LineSegment.Offset;
foreach (var task in errors.Select (t => t.Task)) {
var column = (uint)(Math.Min (Math.Max (0, task.Column - 1), metrics.Layout.LineChars.Length));
var line = editor.GetLine (task.Line);
// skip possible white space locations
while (column < line.Length && char.IsWhiteSpace (editor.GetCharAt (line.Offset + (int)column))) {
column++;
}
if (column >= line.Length)
continue;
int index = (int)metrics.Layout.TranslateToUTF8Index (column, ref curIndex, ref byteIndex);
var pos = metrics.Layout.Layout.IndexToPos (index);
var co = o + task.Column - 1;
g.SetSourceColor (GetMarkerColor (false, metrics.SelectionStart <= co && co < metrics.SelectionEnd));
g.MoveTo (
metrics.TextRenderStartPosition + editor.TextViewMargin.TextStartPosition + pos.X / Pango.Scale.PangoScale,
y + editor.LineHeight - 3
);
g.RelLineTo (3, 3);
g.RelLineTo (-6, 0);
g.ClosePath ();
g.Fill ();
}
}