Class Circle
This class represents the circle shape within a slide.
public class Circle
- Inheritance
-
Circle
- Inherited Members
Constructors
Circle()
Constructor of the Circle class initializes the object of CircleShapeFacade and populates its fields.
public Circle()
Properties
Animation
Property to set animation
public AnimationType Animation { get; set; }
Property Value
BackgroundColor
Property to set or get background color of a circle shape.
public string BackgroundColor { get; set; }
Property Value
Facade
Property to get or set the CircleShapeFacade.
public CircleShapeFacade Facade { get; set; }
Property Value
- CircleShapeFacade
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
GetCircles(List<CircleShapeFacade>)
Method for getting the list of circle shapes.
public static List<Circle> GetCircles(List<CircleShapeFacade> CircleFacades)
Parameters
CircleFacades
List<CircleShapeFacade>A list of CircleShapeFacade objects.
Returns
Remove()
Method to remove the circle shape from a slide.
public void Remove()
Update()
Method to update circle shape.
public void Update()