本文整理汇总了C#中PowerPointLabs.Models.PowerPointSlide.RelocateShapeWithoutPath方法的典型用法代码示例。如果您正苦于以下问题:C# PowerPointSlide.RelocateShapeWithoutPath方法的具体用法?C# PowerPointSlide.RelocateShapeWithoutPath怎么用?C# PowerPointSlide.RelocateShapeWithoutPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PowerPointLabs.Models.PowerPointSlide
的用法示例。
在下文中一共展示了PowerPointSlide.RelocateShapeWithoutPath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PreloadShape
/// <summary>
/// Preloads a shape within the slide to reduce lag. Call after the animations for the shape have been created.
/// </summary>
public static void PreloadShape(PowerPointSlide animationSlide, PowerPoint.Shape shape, bool addCoverImage=true)
{
// The cover image is used to cover the screen while the preloading happens behind the cover image.
PowerPoint.Shape coverImage = null;
if (addCoverImage)
{
coverImage = shape.Duplicate()[1];
coverImage.Left = shape.Left;
coverImage.Top = shape.Top;
animationSlide.RemoveAnimationsForShape(coverImage);
}
float originalWidth = shape.Width;
float originalHeight = shape.Height;
float originalLeft = shape.Left;
float originalTop = shape.Top;
// fit the shape exactly in the screen for preloading.
float scaleRatio = Math.Min(PowerPointPresentation.Current.SlideWidth / shape.Width,
PowerPointPresentation.Current.SlideHeight / shape.Height);
animationSlide.RelocateShapeWithoutPath(shape, 0, 0, shape.Width * scaleRatio, shape.Height * scaleRatio);
var trigger = PowerPoint.MsoAnimTriggerType.msoAnimTriggerWithPrevious;
var effectMotion = AddMotionAnimation(animationSlide, shape, shape.Left, shape.Top, originalLeft + (originalWidth - shape.Width) / 2, originalTop + (originalHeight - shape.Height) / 2, 0, ref trigger);
var effectResize = AddResizeAnimation(animationSlide, shape, shape.Width, shape.Height, originalWidth, originalHeight, 0, ref trigger);
// Make "cover" image disappear after preload.
PowerPoint.Effect effectDisappear = null;
if (addCoverImage)
{
var sequence = animationSlide.TimeLine.MainSequence;
effectDisappear = sequence.AddEffect(coverImage, PowerPoint.MsoAnimEffect.msoAnimEffectFade,
PowerPoint.MsoAnimateByLevel.msoAnimateLevelNone,
PowerPoint.MsoAnimTriggerType.msoAnimTriggerWithPrevious);
effectDisappear.Exit = Office.MsoTriState.msoTrue;
effectDisappear.Timing.Duration = 0.01f;
}
int firstEffectIndex = animationSlide.IndexOfFirstEffect(shape);
// Move the animations to just before the index of the first effect.
if (effectDisappear != null) effectDisappear.MoveTo(firstEffectIndex);
if (effectResize != null) effectResize.MoveTo(firstEffectIndex);
if (effectMotion != null) effectMotion.MoveTo(firstEffectIndex);
}