SetGeometryPaths

GeometryShape.SetGeometryPaths method

Actualiza la geometría de la forma desde una matriz deIGeometryPath. Las coordenadas deben ser relativas a la esquina superior izquierda de la forma. Cambia el tipo de la forma (ShapeType ) aCustom .

public void SetGeometryPaths(IGeometryPath[] geometryPaths)
ParámetroEscribeDescripción
geometryPathsIGeometryPath[]Rutas de geometría de matriz

Excepciones

excepcióncondición
ArgumentExceptionNo se encontró ninguna ruta
ArgumentExceptioncamino vacio

Ejemplos

Ejemplo:

[C#]
using (Presentation pres = new Presentation())
{
    GeometryShape shape = pres.Slides[0].Shapes.AddAutoShape(ShapeType.Rectangle, 100, 100, 200, 100) as GeometryShape;

    GeometryPath geometryPath = shape.GetGeometryPaths()[0];

    geometryPath.LineTo(100, 50, 1);
    geometryPath.LineTo(100, 50, 4);

    shape.SetGeometryPath(geometryPath);

    pres.Save("output.pptx", SaveFormat.Pptx);
}

Ver también