本文整理汇总了C#中ILabel.Value方法的典型用法代码示例。如果您正苦于以下问题:C# ILabel.Value方法的具体用法?C# ILabel.Value怎么用?C# ILabel.Value使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ILabel
的用法示例。
在下文中一共展示了ILabel.Value方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: NewLabel
public virtual ILabel NewLabel(ILabel oldLabel)
{
if (oldLabel is IHasTag)
{
return new WordTag(oldLabel.Value(), ((IHasTag)oldLabel).Tag());
}
else
{
return new WordTag(oldLabel.Value());
}
}
示例2: TaggedWord
/// <summary>
/// Create a new <code>TaggedWord</code>.
/// </summary>
/// <param name="oldLabel">
/// A Label. If it implements the HasWord and/or HasTag interface, then the corresponding value will be set
/// </param>
public TaggedWord(ILabel oldLabel) : base(oldLabel.Value())
{
if (oldLabel is IHasTag)
{
this.vTag = ((IHasTag) oldLabel).Tag();
}
}
示例3: StringLabel
/// <summary>
/// Create a new <code>StringLabel</code> with the
/// <code>value()</code> of another label as its label.
/// </summary>
/// <param name="label">The other label</param>
public StringLabel(ILabel label)
{
this.str = label.Value();
if (label is IHasOffset)
{
var ofs = (IHasOffset) label;
SetBeginPosition(ofs.BeginPosition());
SetEndPosition(ofs.EndPosition());
}
}