[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.Style.Equals

Equals Method

Equals(object)

Determines whether the specified object is equal to the current Style.

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
object obj

An object to compare with the current Style.

Returns
Type Description
bool

A bool value. true if the specified object is equal to the current Style; otherwise, false.

Overrides
Examples
Style style1 = new Style { BackgroundColor = "Black" };
Style style2 = new Style { BackgroundColor = "White" };
bool result = style1.Equals(style2); // false