本文整理汇总了C#中Microsoft.Office.Interop.PowerPoint.Shape.Copy方法的典型用法代码示例。如果您正苦于以下问题:C# Shape.Copy方法的具体用法?C# Shape.Copy怎么用?C# Shape.Copy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Office.Interop.PowerPoint.Shape
的用法示例。
在下文中一共展示了Shape.Copy方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SyncWholeShape
/// <summary>
/// A better version of SyncShape, but cannot do a partial sync like SyncShape can.
/// SyncShape cannot operate on Groups and Charts. If those are detected, SyncWholeShape resorts to deleting
/// candidateShape and replacing it with a copy of refShape instead of syncing.
/// </summary>
public static void SyncWholeShape(Shape refShape, ref Shape candidateShape, PowerPointSlide candidateSlide)
{
bool succeeded = true;
try
{
SyncShape(refShape, candidateShape);
}
catch (UnauthorizedAccessException)
{
succeeded = false;
}
catch (ArgumentException)
{
succeeded = false;
}
catch (COMException)
{
succeeded = false;
}
if (succeeded) return;
candidateShape.Delete();
refShape.Copy();
candidateShape = candidateSlide.Shapes.Paste()[1];
candidateShape.Name = refShape.Name;
}
示例2: CopyShapeToSlide
/// <summary>
/// Copies the shape into this slide, without the usual position offset when an existing shape is already there.
/// </summary>
public Shape CopyShapeToSlide(Shape shape)
{
try
{
shape.Copy();
var newShape = _slide.Shapes.Paste()[1];
newShape.Left = shape.Left;
newShape.Top = shape.Top;
return newShape;
}
catch (COMException)
{
// invalid shape for copy paste (e.g. a placeholder title box with no content)
return null;
}
}
示例3: UpdateBeamOnSlide
private static void UpdateBeamOnSlide(PowerPointSlide slide, Shape refBeamShape)
{
RemoveBeamAgendaFromSlide(slide);
refBeamShape.Copy();
var beamShape = slide.Shapes.Paste();
var section = GetSlideSection(slide);
beamShape.GroupItems.Cast<Shape>()
.Where(AgendaShape.WithPurpose(ShapePurpose.BeamShapeHighlightedText))
.ToList()
.ForEach(shape => shape.Delete());
if (section.Index == 1) return;
var beamFormats = BeamFormats.ExtractFormats(refBeamShape);
var currentSectionTextBox = beamShape.GroupItems
.Cast<Shape>()
.Where(AgendaShape.MeetsConditions(shape => shape.ShapePurpose == ShapePurpose.BeamShapeText &&
shape.Section.Index == section.Index))
.FirstOrDefault();
var currentSectionText = currentSectionTextBox.TextFrame2.TextRange;
Graphics.SyncTextRange(beamFormats.Highlighted, currentSectionText, pickupTextContent: false);
}