本文整理匯總了C#中PowerPointLabs.Models.PowerPointSlide.GroupShapes方法的典型用法代碼示例。如果您正苦於以下問題:C# PowerPointSlide.GroupShapes方法的具體用法?C# PowerPointSlide.GroupShapes怎麽用?C# PowerPointSlide.GroupShapes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PowerPointLabs.Models.PowerPointSlide
的用法示例。
在下文中一共展示了PowerPointSlide.GroupShapes方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ReorganiseBeam
/// <summary>
/// Reorganises the positions of all the text boxes in the beam.
/// </summary>
private static void ReorganiseBeam(PowerPointSlide refSlide, List<AgendaSection> newSections, Shape highlightedTextBox,
Shape background, BeamFormats beamFormats, List<Shape> oldTextBoxes, Shape beamShape)
{
var newTextBoxes = CreateBeamAgendaTextBoxes(refSlide, newSections);
SetupBeamTextBoxPositions(newTextBoxes, highlightedTextBox, background);
for (int i = 0; i < newTextBoxes.Count; ++i)
{
var referenceTextFormat = beamFormats.Regular;
if (i < oldTextBoxes.Count) referenceTextFormat = oldTextBoxes[i].TextFrame2.TextRange;
Graphics.SyncTextRange(referenceTextFormat, newTextBoxes[i].TextFrame2.TextRange, pickupTextContent: false);
}
oldTextBoxes.ForEach(shape => shape.Delete());
var beamShapeShapes = beamShape.Ungroup().Cast<Shape>().ToList();
beamShapeShapes.AddRange(newTextBoxes);
beamShape = refSlide.GroupShapes(beamShapeShapes);
AgendaShape.SetShapeName(beamShape, ShapePurpose.BeamShapeMainGroup, AgendaSection.None);
}
示例2: UpdateBeamItems
/// <summary>
/// Does not reogranise the positions of the text boxes in the beam. Instead, it only deletes text boxes
/// that no longer correspond to a section, and creates new text boxes for the new sections.
/// </summary>
private static void UpdateBeamItems(PowerPointSlide refSlide, List<AgendaSection> newSections, Shape highlightedTextBox,
Shape background, BeamFormats beamFormats, List<Shape> oldTextBoxes, Shape beamShape)
{
List<Shape> markedForDeletion;
var textboxAssignment = GetBeamTextboxAssignment(oldTextBoxes, out markedForDeletion);
var reassignedTextboxIndexes = new HashSet<int>();
var newTextboxes = new List<Shape>();
foreach (var section in newSections)
{
int index = section.Index;
if (textboxAssignment.ContainsKey(index))
{
// Reuse old textbox
var textbox = textboxAssignment[index];
Graphics.SetText(textbox, section.Name);
AgendaShape.SetShapeName(textbox, ShapePurpose.BeamShapeText, section);
reassignedTextboxIndexes.Add(index);
}
else
{
// Create new textbox
var textbox = PrepareBeamAgendaBeamItem(refSlide, section);
var referenceTextFormat = beamFormats.Regular;
Graphics.SyncTextRange(referenceTextFormat, textbox.TextFrame2.TextRange, pickupTextContent: false);
newTextboxes.Add(textbox);
}
}
markedForDeletion.AddRange(from entry in textboxAssignment where !reassignedTextboxIndexes.Contains(entry.Key) select entry.Value);
markedForDeletion.ForEach(shape => shape.Delete());
var beamShapeShapes = beamShape.Ungroup().Cast<Shape>().ToList();
beamShapeShapes.AddRange(newTextboxes);
beamShape = refSlide.GroupShapes(beamShapeShapes);
AgendaShape.SetShapeName(beamShape, ShapePurpose.BeamShapeMainGroup, AgendaSection.None);
}
示例3: CreateBeamAgendaShapes
private static void CreateBeamAgendaShapes(PowerPointSlide refSlide, Direction beamDirection = Direction.Top)
{
var sections = GetAllButFirstSection();
var background = PrepareBeamAgendaBackground(refSlide);
var textBoxes = CreateBeamAgendaTextBoxes(refSlide, sections);
var highlightedTextBox = CreateHighlightedTextBox(refSlide);
SetupBeamTextBoxPositions(textBoxes, highlightedTextBox, background);
MatchColour(highlightedTextBox, background);
var beamShapeItems = new List<Shape>();
beamShapeItems.Add(background);
beamShapeItems.Add(highlightedTextBox);
beamShapeItems.AddRange(textBoxes);
var group = refSlide.GroupShapes(beamShapeItems);
AgendaShape.SetShapeName(group, ShapePurpose.BeamShapeMainGroup, AgendaSection.None);
}