IDocumentSavingCallback
内容
[
隐藏
]IDocumentSavingCallback interface
如果您想在保存文档期间调用自己的自定义方法,请实现此接口。
public interface IDocumentSavingCallback
方法
姓名 | 描述 |
---|---|
Notify(DocumentSavingArgs) | 调用此函数以通知文档保存进度。 |
例子
展示如何在保存为 html 的同时管理文档。
public void ProgressCallback(SaveFormat saveFormat, string ext)
{
Document doc = new Document(MyDir + "Big document.docx");
// 支持以下格式:Html、Mhtml、Epub。
HtmlSaveOptions saveOptions = new HtmlSaveOptions(saveFormat)
{
ProgressCallback = new SavingProgressCallback()
};
var exception = Assert.Throws<OperationCanceledException>(() =>
doc.Save(ArtifactsDir + $"HtmlSaveOptions.ProgressCallback.{ext}", saveOptions));
Assert.True(exception?.Message.Contains("EstimatedProgress"));
}
/// <summary>
/// 保存进度回调。在“MaxDuration”秒后取消文档保存。
/// </summary>
public class SavingProgressCallback : IDocumentSavingCallback
{
/// <summary>
/// Ctr。
/// </summary>
public SavingProgressCallback()
{
mSavingStartedAt = DateTime.Now;
}
/// <summary>
/// 文档保存过程中调用的回调方法。
/// </summary>
/// <param name="args">保存参数。</param>
public void Notify(DocumentSavingArgs args)
{
DateTime canceledAt = DateTime.Now;
double ellapsedSeconds = (canceledAt - mSavingStartedAt).TotalSeconds;
if (ellapsedSeconds > MaxDuration)
throw new OperationCanceledException($"EstimatedProgress = {args.EstimatedProgress}; CanceledAt = {canceledAt}");
}
/// <summary>
/// 开始保存文档的日期和时间。
/// </summary>
private readonly DateTime mSavingStartedAt;
/// <summary>
/// 允许的最大持续时间(以秒为单位)。
/// </summary>
private const double MaxDuration = 0.1d;
}
演示如何在保存为 docx 时管理文档。
public void ProgressCallback(SaveFormat saveFormat, string ext)
{
Document doc = new Document(MyDir + "Big document.docx");
// 支持以下格式:Docx、FlatOpc、Docm、Dotm、Dotx。
OoxmlSaveOptions saveOptions = new OoxmlSaveOptions(saveFormat)
{
ProgressCallback = new SavingProgressCallback()
};
var exception = Assert.Throws<OperationCanceledException>(() =>
doc.Save(ArtifactsDir + $"OoxmlSaveOptions.ProgressCallback.{ext}", saveOptions));
Assert.True(exception?.Message.Contains("EstimatedProgress"));
}
/// <summary>
/// 保存进度回调。在“MaxDuration”秒后取消文档保存。
/// </summary>
public class SavingProgressCallback : IDocumentSavingCallback
{
/// <summary>
/// Ctr。
/// </summary>
public SavingProgressCallback()
{
mSavingStartedAt = DateTime.Now;
}
/// <summary>
/// 文档保存过程中调用的回调方法。
/// </summary>
/// <param name="args">保存参数。</param>
public void Notify(DocumentSavingArgs args)
{
DateTime canceledAt = DateTime.Now;
double ellapsedSeconds = (canceledAt - mSavingStartedAt).TotalSeconds;
if (ellapsedSeconds > MaxDuration)
throw new OperationCanceledException($"EstimatedProgress = {args.EstimatedProgress}; CanceledAt = {canceledAt}");
}
/// <summary>
/// 开始保存文档的日期和时间。
/// </summary>
private readonly DateTime mSavingStartedAt;
/// <summary>
/// 允许的最大持续时间(以秒为单位)。
/// </summary>
private const double MaxDuration = 0.01d;
}
演示如何在保存到 xamlflow 时管理文档。
public void ProgressCallback(SaveFormat saveFormat, string ext)
{
Document doc = new Document(MyDir + "Big document.docx");
// 支持以下格式:XamlFlow、XamlFlowPack。
XamlFlowSaveOptions saveOptions = new XamlFlowSaveOptions(saveFormat)
{
ProgressCallback = new SavingProgressCallback()
};
var exception = Assert.Throws<OperationCanceledException>(() =>
doc.Save(ArtifactsDir + $"XamlFlowSaveOptions.ProgressCallback.{ext}", saveOptions));
Assert.True(exception?.Message.Contains("EstimatedProgress"));
}
/// <summary>
/// 保存进度回调。在“MaxDuration”秒后取消文档保存。
/// </summary>
public class SavingProgressCallback : IDocumentSavingCallback
{
/// <summary>
/// Ctr。
/// </summary>
public SavingProgressCallback()
{
mSavingStartedAt = DateTime.Now;
}
/// <summary>
/// 文档保存过程中调用的回调方法。
/// </summary>
/// <param name="args">保存参数。</param>
public void Notify(DocumentSavingArgs args)
{
DateTime canceledAt = DateTime.Now;
double ellapsedSeconds = (canceledAt - mSavingStartedAt).TotalSeconds;
if (ellapsedSeconds > MaxDuration)
throw new OperationCanceledException($"EstimatedProgress = {args.EstimatedProgress}; CanceledAt = {canceledAt}");
}
/// <summary>
/// 开始保存文档的日期和时间。
/// </summary>
private readonly DateTime mSavingStartedAt;
/// <summary>
/// 允许的最大持续时间(以秒为单位)。
/// </summary>
private const double MaxDuration = 0.01d;
}
也可以看看
- 命名空间 Aspose.Words.Saving
- 部件 Aspose.Words