TextField.DefaultFontId 属性
获取或设置默认字体 ID。
命名空间: Microsoft.VisualStudio.Modeling.Diagrams
程序集: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0(在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll 中)
语法
声明
Public Property DefaultFontId As StyleSetResourceId
public StyleSetResourceId DefaultFontId { get; set; }
属性值
类型:Microsoft.VisualStudio.Modeling.Diagrams.StyleSetResourceId
备注
设置特定字段特定形状类的每个实例的 InitializeShapeFields() 字体 ID,重写在类形状,查找文本字段和赋新值。 ID 值必须是 DiagramFonts的成员。
例如,对于“CommentDecorator 调用标准注释字段使用字体”:
// Set Generates Double Derived in DSL Definition
// to allow InitializeShapeFields to be overridden.
partial class ExampleShape
{
/// <summary>
/// Compose a list of the fields in this shape.
/// Called once for each shape class.
/// </summary>
protected override void InitializeShapeFields(IList<ShapeField> shapeFields)
{
// Set up fields according to DSL Definition:
base.InitializeShapeFields(shapeFields);
// Update the text field for CommentDecorator:
TextField commentField = ShapeElement.FindShapeField(shapeFields, "CommentDecorator") as TextField;
commentField.DefaultFontId = DiagramsFonts.CommentText;
}
}
若要动态修改字体,派生自己的 TextField 子类并重写 GetFondId()。 若要改为在标准样式集之外的字体,请重写 GetFont()。 参见在这些方法的示例。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。