彩票走势图

添加验证密码功能!PPT处理控件Aspose.Slides 5月最新版上线!4大新功能邀你体验

原创|产品更新|编辑:李显亮|2020-05-08 10:29:49.350|阅读 212 次

概述:Aspose.Slides For .Net更新至v20.5,支持数学方程式(OMML),新增识别受读和写保护的演示文稿功能和添加验证密码,并有1个功能正在调研中,欢迎下载体验。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

Aspose.Slides for .NET是一个独特的演示处理API,它允许应用程序读取、写入、修改和转换PowerPoint演示文稿。作为一个独立的API,它提供了管理PowerPoint关键功能的功能,如管理文本、形状、表格和动画、向幻灯片添加音频和视频、预览幻灯片等,而不需要Microsoft PowerPoint。

Aspose.Slides for .NET迎来2020年5月更新v20.5,支持数学方程式(OMML),新增识别受读和写保护的演示文稿功能和添加验证密码,并有1个功能正在调研中。(点击下方按钮即可下载)

下载Aspose.Slides最新版

具体更新内容

key 概述 类别
SLIDESNET-41835 与Aspose.Slides相关的性能问题 调查中
SLIDESNET-41786 添加验证密码的功能以进行修改 功能
SLIDESNET-40011 一行对齐多个形状 功能
SLIDESNET-38923 识别受读和写保护的演示文稿的功能 功能
SLIDESNET-37280 支持数学方程式(OMML) 功能
SLIDESNET-41621 导入Excel EMF图像的宽高比已损坏 增强功能
SLIDESNET-38545 在将长文本添加到单元格后,获取实际的表行高度 增强功能
更多更新修复请参考:【Aspose.Slides for .NET v20.5更新说明】

形状对齐支持演示

这项新功能有助于更改幻灯片上选定形状的位置。将形状与幻灯片的边距或边缘对齐,或使它们彼此相对对齐。

添加验证密码功能!PPT处理控件Aspose.Slides 5月最新版上线!4大新功能邀你体验

为了支持上图中的PowerPoint选项,添加了新的重载 SlideUtil.AlignShapes方法和ShapeAlignmentType 枚举。

ShapeAlignmentType枚举

所述ShapeAlignmentType 确定的方式来对准的形状。ShapeAlignmentType 枚举的可能值:AlignLeft、AlignRight、AlignCenter、AlignTop、AlignMiddle、AlignBottom、DistributeHorizontally、DistributeVertically。

SlideUtil.AlignShape()方法

该方法更改幻灯片上选定形状的位置。输入参数:

  • ShapesAlignmentType alignmentType- 确定将应用哪种对齐方式。
  • bool alignToSlide- 如果为true,则形状将相对于幻灯片边缘对齐。否则,形状将相对于彼此对齐。
  • IBaseSlide 幻灯片 -父幻灯片。
  • int [] shapeIndexes- 要对齐的形状的索引。
  • IShapeCollection 形状 -形状的集合对齐。

用例1

添加验证密码功能!PPT处理控件Aspose.Slides 5月最新版上线!4大新功能邀你体验

假设我们要沿着幻灯片的顶部边框将形状与索引1、2和4对齐。以下是如何实现此目标的代码段。

using (Presentation pres = new Presentation("example.pptx"))
{
     ISlide slide = pres.Slides[0];
     IShape shape1 = slide.Shapes[1];
     IShape shape2 = slide.Shapes[2];
     IShape shape3 = slide.Shapes[4];
     SlideUtil.AlignShapes(ShapesAlignmentType.AlignTop, true, pres.Slides[0], new int[]
    {
          slide.Shapes.IndexOf(shape1),
          slide.Shapes.IndexOf(shape2),
          slide.Shapes.IndexOf(shape3)
    });
}
添加验证密码功能!PPT处理控件Aspose.Slides 5月最新版上线!4大新功能邀你体验

用例2

另一个选项显示如何在幻灯片上对齐整个形状集合:

using (Presentation pres = new Presentation("example.pptx"))
{
    SlideUtil.AlignShapes(ShapesAlignmentType.AlignBottom, false, pres.Slides[0].Shapes);
}


通过IPresentationInfo接口检查写保护密码

IsWriteProtected 属性和 CheckWriteProtection 方法已添加到 IPresentationInfo 接口和 PresentationInfo 类。此属性和方法允许检查演示文稿是否受密码保护以进行修改。修改密码的目的是在演示文稿上设置写保护。写保护限制了使用主机应用程序将演示文稿保存到同一路径的能力。

属性和方法声明:

///
/// Gets a value that indicates whether a binded presentation is write protected.
///

///
/// If the presentation is protected by a password to open, the property value equals NotDefined.
/// See enumeration.
///

NullableBool IsWriteProtected { get; }

///
/// Checks whether a password to modify is correct for a write protected presentation.
///

/// The password to check.
///
/// True if the presentation is write protected and the password is correct. False otherwise.
///

///
/// 1. You should check the property before calling this method.
/// 2. When password is null or empty, this method returns false.
///

///

bool CheckWriteProtection(string password);

用例

下面的示例演示如何检查密码以修改演示文稿:

IPresentationInfo info = PresentationFactory.Instance.GetPresentationInfo(presentationFilePath);
bool isWriteProtectedByPassword = info.IsWriteProtected == NullableBool.True && info.CheckWriteProtection(“ my_password”);


通过IProtectionManager界面检查写保护密码

CheckWriteProtection 方法已添加到 IProtectionManager 接口和 ProtectionManager 类。此方法允许检查演示文稿是否受密码保护以进行修改。修改密码的目的是在演示文稿上设置写保护。写保护限制了使用主机应用程序将演示文稿保存到同一路径的能力。

方法声明:

///
/// Determines whether a presentation is a password protected to modify.
///

/// The password for checking.
/// True if the password is valid; otherwise, false.
///
/// 1. You should check the property before calling this method.
/// 2. When the password is null or empty, this method returns false.
///

bool CheckWriteProtection(string password);

用例

下面的示例演示如何检查密码以修改演示文稿:

using (var presentation = new Presentation(presentationFilePath))
{
   bool isWriteProtected = presentation.ProtectionManager.CheckWriteProtection("my_password");
}


通过IPresentationInfo接口检查演示打开保护

IsPasswordProtected 属性已添加到 IPresentationInfo接口和 PresentationInfo 类。此属性允许检查演示文稿是否受保护可以打开。为文档设置密码后,演示文稿可以打开。

方法声明:

///
/// Gets a value that indicates whether a binded presentation is protected by a password to open.
///

bool IsPasswordProtected { get; }

用例

下面的示例演示如何检查保护是否打开:

IPresentationInfo info = PresentationFactory.Instance.GetPresentationInfo(presentationFilePath);
if (info.IsPasswordProtected)
{
    Console.WriteLine("The presentation '" + presentationFilePath + "' is protected by password to open.");
}

Aspose是目前国内外非常火爆且功能强大的文件格式敏捷开发控件,但因为产品众多、技术问题复杂等因素,也常常遭受开发人员吐槽。如果您也正在使用Aspose相关产品,点击下方按钮,来谈谈Aspose的优劣,您的感受对我们相当宝贵哦~



标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP