RegisterDictionary
内容
[
隐藏
]RegisterDictionary(string, Stream)
从流中注册并加载指定语言的连字符字典。如果字典无法读取或格式无效,则抛出异常。
public static void RegisterDictionary(string language, Stream stream)
范围 | 类型 | 描述 |
---|---|---|
language | String | 语言名称,例如“en-US”。有关详细信息,请参阅 .NET 文档中的“区域性名称”和 RFC 4646。 |
stream | Stream | OpenOffice 格式的字典文件的流。 |
例子
演示如何从文件打开和注册字典。
public void RegisterDictionary()
{
// 设置一个回调来跟踪连字符字典注册期间发生的警告。
WarningInfoCollection warningInfoCollection = new WarningInfoCollection();
Hyphenation.WarningCallback = warningInfoCollection;
// 通过流注册英语(美国)连字符字典。
Stream dictionaryStream = new FileStream(MyDir + "hyph_en_US.dic", FileMode.Open);
Hyphenation.RegisterDictionary("en-US", dictionaryStream);
Assert.AreEqual(0, warningInfoCollection.Count);
// 打开 Microsoft Word 可能无法在英语机器上连字符的区域设置的文档,例如德语。
Document doc = new Document(MyDir + "German text.docx");
// 要在保存时对该文档进行连字符,我们需要一个用于“de-CH”语言代码的连字符字典。
// 此回调将处理对该字典的自动请求。
Hyphenation.Callback = new CustomHyphenationDictionaryRegister();
// 当我们保存文档时,德语连字符将生效。
doc.Save(ArtifactsDir + "Hyphenation.RegisterDictionary.pdf");
// 该字典包含两个相同的模式,这将触发警告。
Assert.AreEqual(1, warningInfoCollection.Count);
Assert.AreEqual(WarningType.MinorFormattingLoss, warningInfoCollection[0].WarningType);
Assert.AreEqual(WarningSource.Layout, warningInfoCollection[0].Source);
Assert.AreEqual("Hyphenation dictionary contains duplicate patterns. The only first found pattern will be used. " +
"Content can be wrapped differently.", warningInfoCollection[0].Description);
}
/// <summary>
/// 将 ISO 语言代码与连字符字典文件的本地系统文件名相关联。
/// </summary>
private class CustomHyphenationDictionaryRegister : IHyphenationCallback
{
public CustomHyphenationDictionaryRegister()
{
mHyphenationDictionaryFiles = new Dictionary<string, string>
{
{ "en-US", MyDir + "hyph_en_US.dic" },
{ "de-CH", MyDir + "hyph_de_CH.dic" }
};
}
public void RequestDictionary(string language)
{
Console.Write("Hyphenation dictionary requested: " + language);
if (Hyphenation.IsDictionaryRegistered(language))
{
Console.WriteLine(", is already registered.");
return;
}
if (mHyphenationDictionaryFiles.ContainsKey(language))
{
Hyphenation.RegisterDictionary(language, mHyphenationDictionaryFiles[language]);
Console.WriteLine(", successfully registered.");
return;
}
Console.WriteLine(", no respective dictionary file known by this Callback.");
}
private readonly Dictionary<string, string> mHyphenationDictionaryFiles;
}
也可以看看
- class Hyphenation
- 命名空间 Aspose.Words
- 部件 Aspose.Words
RegisterDictionary(string, string)
从文件中注册并加载指定语言的连字符字典。如果字典无法读取或格式无效,则抛出异常。
该方法还可以用来注册Null字典,以防止Callback
避免被重复调用同一语言。
public static void RegisterDictionary(string language, string fileName)
范围 | 类型 | 描述 |
---|---|---|
language | String | 语言名称,例如“en-US”。有关详细信息,请参阅 .NET 文档中的“区域性名称”和 RFC 4646。 |
fileName | String | Open Office 格式的词典文件的路径。 |
例子
展示如何注册连字符字典。
// 连字符字典包含定义字典语言的连字符规则的字符串列表。
// 当文档包含多行文本时,其中的单词可以被拆分并在下一行继续,
// 连字符将在字典的字符串列表中查找该单词的子字符串。
// 如果字典包含子字符串,那么连字符会将单词分成两行
// 通过子字符串并在前半部分添加连字符。
// 将本地文件系统中的字典文件注册到“de-CH”语言环境。
Hyphenation.RegisterDictionary("de-CH", MyDir + "hyph_de_CH.dic");
Assert.True(Hyphenation.IsDictionaryRegistered("de-CH"));
// 打开一个包含区域设置与我们的字典匹配的文本的文档,
// 并将其保存为固定页面保存格式。该文档中的文本将用连字符连接。
Document doc = new Document(MyDir + "German text.docx");
Assert.True(doc.FirstSection.Body.FirstParagraph.Runs.OfType<Run>().All(
r => r.Font.LocaleId == new CultureInfo("de-CH").LCID));
doc.Save(ArtifactsDir + "Hyphenation.Dictionary.Registered.pdf");
// 取消注册字典后重新加载文档,
// 并将其保存到另一个 PDF,该 PDF 不会包含连字符文本。
Hyphenation.UnregisterDictionary("de-CH");
Assert.False(Hyphenation.IsDictionaryRegistered("de-CH"));
doc = new Document(MyDir + "German text.docx");
doc.Save(ArtifactsDir + "Hyphenation.Dictionary.Unregistered.pdf");
演示如何从文件打开和注册字典。
public void RegisterDictionary()
{
// 设置一个回调来跟踪连字符字典注册期间发生的警告。
WarningInfoCollection warningInfoCollection = new WarningInfoCollection();
Hyphenation.WarningCallback = warningInfoCollection;
// 通过流注册英语(美国)连字符字典。
Stream dictionaryStream = new FileStream(MyDir + "hyph_en_US.dic", FileMode.Open);
Hyphenation.RegisterDictionary("en-US", dictionaryStream);
Assert.AreEqual(0, warningInfoCollection.Count);
// 打开 Microsoft Word 可能无法在英语机器上连字符的区域设置的文档,例如德语。
Document doc = new Document(MyDir + "German text.docx");
// 要在保存时对该文档进行连字符,我们需要一个用于“de-CH”语言代码的连字符字典。
// 此回调将处理对该字典的自动请求。
Hyphenation.Callback = new CustomHyphenationDictionaryRegister();
// 当我们保存文档时,德语连字符将生效。
doc.Save(ArtifactsDir + "Hyphenation.RegisterDictionary.pdf");
// 该字典包含两个相同的模式,这将触发警告。
Assert.AreEqual(1, warningInfoCollection.Count);
Assert.AreEqual(WarningType.MinorFormattingLoss, warningInfoCollection[0].WarningType);
Assert.AreEqual(WarningSource.Layout, warningInfoCollection[0].Source);
Assert.AreEqual("Hyphenation dictionary contains duplicate patterns. The only first found pattern will be used. " +
"Content can be wrapped differently.", warningInfoCollection[0].Description);
}
/// <summary>
/// 将 ISO 语言代码与连字符字典文件的本地系统文件名相关联。
/// </summary>
private class CustomHyphenationDictionaryRegister : IHyphenationCallback
{
public CustomHyphenationDictionaryRegister()
{
mHyphenationDictionaryFiles = new Dictionary<string, string>
{
{ "en-US", MyDir + "hyph_en_US.dic" },
{ "de-CH", MyDir + "hyph_de_CH.dic" }
};
}
public void RequestDictionary(string language)
{
Console.Write("Hyphenation dictionary requested: " + language);
if (Hyphenation.IsDictionaryRegistered(language))
{
Console.WriteLine(", is already registered.");
return;
}
if (mHyphenationDictionaryFiles.ContainsKey(language))
{
Hyphenation.RegisterDictionary(language, mHyphenationDictionaryFiles[language]);
Console.WriteLine(", successfully registered.");
return;
}
Console.WriteLine(", no respective dictionary file known by this Callback.");
}
private readonly Dictionary<string, string> mHyphenationDictionaryFiles;
}
也可以看看
- class Hyphenation
- 命名空间 Aspose.Words
- 部件 Aspose.Words