Skip to content

Equals Method (2)

Equals (1 of 2)

Summary

Defines whether the specified object is equal to this instance.

Signature

1
public bool Equals(CornerRadius other)

Parameters

Name Type Description
other CornerRadius The other CornerRadius object to compare with this instance.

Return Value

bool

Declaring Type

cAlgo.API.CornerRadius

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 using cAlgo.API;
 namespace cAlgo
 {
     // This sample indicator shows how to use the rectangle corner radius to create a round corner rectangle
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class RectangleCornerRadiusSample : Indicator
     {
         protected override void Initialize()
         {
             var rectangle = new Rectangle
             {
                 RadiusX = 20,
                 RadiusY = 20,
                 HorizontalAlignment = HorizontalAlignment.Center,
                 VerticalAlignment = VerticalAlignment.Center,
                 Width = 200,
                 Height = 150,
                 FillColor = Color.FromArgb(100, Color.Red),
                 StrokeColor = Color.Yellow
             };
             Chart.AddControl(rectangle);
         }
         public override void Calculate(int index)
         {
         }
     }
 }

Equals (2 of 2)

Summary

Defines whether the specified object is equal to this instance.

Signature

1
public bool Equals(object obj)

Parameters

Name Type Description
obj object The object to compare with this instance.

Return Value

bool

Declaring Type

cAlgo.API.CornerRadius

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 using cAlgo.API;
 namespace cAlgo
 {
     // This sample indicator shows how to use the rectangle corner radius to create a round corner rectangle
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class RectangleCornerRadiusSample : Indicator
     {
         protected override void Initialize()
         {
             var rectangle = new Rectangle
             {
                 RadiusX = 20,
                 RadiusY = 20,
                 HorizontalAlignment = HorizontalAlignment.Center,
                 VerticalAlignment = VerticalAlignment.Center,
                 Width = 200,
                 Height = 150,
                 FillColor = Color.FromArgb(100, Color.Red),
                 StrokeColor = Color.Yellow
             };
             Chart.AddControl(rectangle);
         }
         public override void Calculate(int index)
         {
         }
     }
 }

Last update: March 17, 2023