本文整理汇总了C#中Core.Parse方法的典型用法代码示例。如果您正苦于以下问题:C# Core.Parse方法的具体用法?C# Core.Parse怎么用?C# Core.Parse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Core
的用法示例。
在下文中一共展示了Core.Parse方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HighlightTextRange
void HighlightTextRange(Office.TextRange2 textRange, Core.Parser parser)
{
textRange.Font.Fill.ForeColor.RGB = System.Drawing.Color.Black.ToMsoColor();
foreach (var f in parser.Parse(textRange.Text))
{
// NOTE: indices of Characters are 1-based
textRange.get_Characters(1 + f.Start, f.Length).Font.Fill.ForeColor.RGB = f.ForegroundColor.ToMsoColor();
}
}
示例2: HighlightRange
void HighlightRange(WordInterop.Range range, Core.Parser parser)
{
// reset text color.
range.Font.ColorIndex = WordInterop.WdColorIndex.wdAuto;
var chars = range.Characters;
foreach (var f in parser.Parse(range.Text))
{
// NOTE: indices of Characters are 1-based
var r = chars[1 + f.Start];
r.SetRange(r.Start, r.Start + f.Length);
r.Font.Fill.ForeColor.RGB = f.ForegroundColor.ToMsoColor();
}
}
示例3: HighlightCells
void HighlightCells(ExcelInterop.Range range, Core.Parser parser)
{
if (range.Cells.Count > 1)
{
foreach (var cell in range.Cells.Cast<ExcelInterop.Range>())
{
HighlightCells(cell, parser);
}
}
else
{
var text = (string)range.Text;
if (string.IsNullOrEmpty(text))
return;
// reset text color.
range.Font.ColorIndex = ExcelInterop.XlColorIndex.xlColorIndexAutomatic;
foreach (var f in parser.Parse(text))
{
// NOTE: indices of Characters are 1-based
range.get_Characters(f.Start + 1, f.Length).Font.Color = f.ForegroundColor;
}
}
}