Class WallThickness
Class which represents the wall thickness.
Inheritance
Implements
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public sealed class WallThickness : ValueType, IEquatable<WallThickness>
Constructors
WallThickness(Double)
Initializes a new instance of the WallThickness class.
Declaration
public WallThickness(double uniformValue)
Parameters
Type | Name | Description |
---|---|---|
System.Double | uniformValue | The uniform value. |
WallThickness(Double, Double, Double)
Initializes a new instance of the WallThickness class.
Declaration
public WallThickness(double left, double bottom, double back)
Parameters
Type | Name | Description |
---|---|---|
System.Double | left | The left value. |
System.Double | bottom | The bottom value. |
System.Double | back | The back value. |
Properties
Back
Gets or sets the back.
Declaration
public double Back { get; set; }
Property Value
Type |
---|
System.Double |
Bottom
Gets or sets the bottom.
Declaration
public double Bottom { get; set; }
Property Value
Type |
---|
System.Double |
Left
Gets or sets the left.
Declaration
public double Left { get; set; }
Property Value
Type |
---|
System.Double |
Methods
Equals(WallThickness)
Override Equals to return bool value comparing to wall thickness position.
Declaration
public bool Equals(WallThickness wallThickness)
Parameters
Type | Name | Description |
---|---|---|
WallThickness | wallThickness | The wall thickness. |
Returns
Type | Description |
---|---|
System.Boolean | The bool value. |
Equals(Object)
Override Equals to return bool value comparing to wall thickness object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The object. |
Returns
Type | Description |
---|---|
System.Boolean | The bool value. |
GetHashCode()
Override GetHashCode to return the hash code.
Declaration
public override int GetHashCode()
Returns
Type |
---|
System.Int32 |
Operators
Equality(WallThickness, WallThickness)
Override Operator == to return bool value comparing to two points.
Declaration
public static bool operator ==(WallThickness point1, WallThickness point2)
Parameters
Type | Name | Description |
---|---|---|
WallThickness | point1 | The wall thickness point one value. |
WallThickness | point2 | The wall thickness point two value. |
Returns
Type | Description |
---|---|
System.Boolean | The bool value. |
Inequality(WallThickness, WallThickness)
Override Operator != to return bool value comparing to two points.
Declaration
public static bool operator !=(WallThickness point1, WallThickness point2)
Parameters
Type | Name | Description |
---|---|---|
WallThickness | point1 | The wall thickness point one value. |
WallThickness | point2 | The wall thickness point two value. |
Returns
Type | Description |
---|---|
System.Boolean | The bool value. |