Class CurvedLine
This class represents the rectangle shape within a slide.
public class CurvedLine
- Inheritance
-
CurvedLine
- Inherited Members
Constructors
CurvedLine()
Constructor of the CurvedLine class initializes the object of CurvedLineFacade and populates its fields.
public CurvedLine()
Properties
Animation
Property to set animation
public AnimationType Animation { get; set; }
Property Value
BackgroundColor
Property to set or get background color of a rectangle shape.
public string BackgroundColor { get; set; }
Property Value
Facade
Property to get or set the CurvedLineFacade.
public CurvedLineFacade Facade { get; set; }
Property Value
- CurvedLineFacade
Height
Property to get or set height of the shape.
public double Height { get; set; }
Property Value
ShapeIndex
Property to get or set the shape index within a slide.
public int ShapeIndex { get; set; }
Property Value
Width
Property to get or set width of the shape.
public double Width { get; set; }
Property Value
X
Property to get or set X coordinate of the shape.
public double X { get; set; }
Property Value
Y
Property to get or set Y coordinate of the shape.
public double Y { get; set; }
Property Value
Methods
GetCurvedLines(List<CurvedLineFacade>)
Method for getting the list of rectangle shapes.
public static List<CurvedLine> GetCurvedLines(List<CurvedLineFacade> CurvedLineFacades)
Parameters
CurvedLineFacades
List<CurvedLineFacade>A list of CurvedLineFacade objects.
Returns
- List<CurvedLine>
A list of CurvedLine objects.
Remove()
Method to remove the rectangle shape from a slide.
public void Remove()
Update()
Method to update rectangle shape.
public void Update()