Ejemplo n.º 1
0
        public Shape AddTextbox(Microsoft.Office.Core.MsoTextOrientation Orientation, float Left, float Top, float Width, float Height)
        {
            MockShape shape = new MockShape();

            shape.type   = Microsoft.Office.Core.MsoShapeType.msoTextBox;
            shape.Left   = Left;
            shape.Top    = Top;
            shape.Width  = Width;
            shape.Height = Height;
            shapes.Add(shape);
            return((Microsoft.Office.Interop.PowerPoint.Shape)shape);
        }
Ejemplo n.º 2
0
 public Shape AddLabel(Microsoft.Office.Core.MsoTextOrientation Orientation, float Left, float Top, float Width, float Height)
 {
     throw new NotImplementedException();
 }