Class CellWithViewProperties
CellWithViewProperties
Implements
IEquatable<CellWithViewProperties>
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class CellWithViewProperties : Cell, IEquatable<CellWithViewProperties>
Constructors
CellWithViewProperties(String, ViewProperties, String, CellLinks, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String)
Initializes a new instance of the CellWithViewProperties class.
Declaration
public CellWithViewProperties(string name = null, ViewProperties properties = null, string id = null, CellLinks links = null, int? x = null, int? y = null, int? w = null, int? h = null, string viewID = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | name. |
ViewProperties | properties | properties. |
System.String | id | |
CellLinks | links | |
System.Nullable<System.Int32> | x | |
System.Nullable<System.Int32> | y | |
System.Nullable<System.Int32> | w | |
System.Nullable<System.Int32> | h | |
System.String | viewID |
Properties
Name
Gets or Sets Name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Properties
Gets or Sets Properties
Declaration
public ViewProperties Properties { get; set; }
Property Value
Type | Description |
---|---|
ViewProperties |
Methods
Equals(CellWithViewProperties)
Returns true if CellWithViewProperties instances are equal
Declaration
public bool Equals(CellWithViewProperties input)
Parameters
Type | Name | Description |
---|---|---|
CellWithViewProperties | input | Instance of CellWithViewProperties to be compared |
Returns
Type | Description |
---|---|
System.Boolean | Boolean |
Equals(Object)
Returns true if objects are equal
Declaration
public override bool Equals(object input)
Parameters
Type | Name | Description |
---|---|---|
System.Object | input | Object to be compared |
Returns
Type | Description |
---|---|
System.Boolean | Boolean |
Overrides
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hash code |
Overrides
ToJson()
Returns the JSON string presentation of the object
Declaration
public override string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |
Overrides
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String presentation of the object |
Overrides
Implements
IEquatable<>