using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Spire.Presentation;
using Spire.Presentation.Drawing;
using System.Drawing;
namespace test
{
class Program
{
static void Main(
string[] args)
{
Presentation presentation =
new Presentation();
IAutoShape shape1 = presentation.Slides[
0].Shapes.AppendShape(ShapeType.RightArrow,
new RectangleF(
150,
150,
150,
150));
shape1.Fill.FillType = FillFormatType.Solid;
shape1.Fill.SolidColor.KnownColor = KnownColors.RoyalBlue;
ShapeThreeD Demo1 = shape1.ThreeD.ShapeThreeD;
Demo1.PresetMaterial = PresetMaterialType.Matte;
Demo1.TopBevel.PresetType = BevelPresetType.ArtDeco;
Demo1.TopBevel.Height =
4;
Demo1.TopBevel.Width =
12;
Demo1.BevelColorMode = BevelColorType.Contour;
Demo1.ContourColor.KnownColor = KnownColors.LightBlue;
Demo1.ContourWidth =
3.5;
IAutoShape shape2 = presentation.Slides[
0].Shapes.AppendShape(ShapeType.Pentagon,
new RectangleF(
400,
150,
150,
150));
shape2.Fill.FillType = FillFormatType.Solid;
shape2.Fill.SolidColor.KnownColor = KnownColors.LawnGreen;
ShapeThreeD Demo2 = shape2.ThreeD.ShapeThreeD;
Demo2.PresetMaterial = PresetMaterialType.SoftEdge;
Demo2.TopBevel.PresetType = BevelPresetType.SoftRound;
Demo2.TopBevel.Height =
12;
Demo2.TopBevel.Width =
12;
Demo2.BevelColorMode = BevelColorType.Contour;
Demo2.ContourColor.KnownColor = KnownColors.LawnGreen;
Demo2.ContourWidth =
5;
presentation.SaveToFile(
" result.pptx ", FileFormat.Pptx2010);
System.Diagnostics.Process.Start(
" result.pptx ");
}
}
}