Contains

FontInfoCollection.Contains method

确定集合中是否包含具有给定名称的字体。

public bool Contains(string name)
范围类型描述
nameString要查找的字体名称,不区分大小写。

返回值

真的如果在集合中找到该项目;否则,错误的

例子

显示有关空白文档中存在的字体的信息。

Document doc = new Document();

// 空白文档包含 3 种默认字体。文档中的每种字体
// 将有一个相应的 FontInfo 对象,其中包含有关该字体的详细信息。
Assert.AreEqual(3, doc.FontInfos.Count);

Assert.True(doc.FontInfos.Contains("Times New Roman"));
Assert.AreEqual(204, doc.FontInfos["Times New Roman"].Charset);

Assert.True(doc.FontInfos.Contains("Symbol"));
Assert.True(doc.FontInfos.Contains("Arial"));

也可以看看