Class SheetCell
Assembly: Glitch9.AIDevKit.Sheets.dll
Syntax
[Serializable]
public abstract class SheetCell : IEquatable<SheetCell>
Constructors
|
Edit this page
View Source
SheetCell(string)
Declaration
protected SheetCell(string columnId)
Parameters
| Type |
Name |
Description |
| string |
columnId |
|
Properties
|
Edit this page
View Source
ColumnId
Declaration
public string ColumnId { get; }
Property Value
Methods
|
Edit this page
View Source
Create(string, ColumnDataType)
Create a SheetCell instance based on the given ColumnDataType.
Declaration
public static SheetCell Create(string columnId, ColumnDataType type)
Parameters
Returns
|
Edit this page
View Source
CreateAssetCell(string, ColumnDataType, ObjectReference)
Declaration
public static SheetCell CreateAssetCell(string columnId, ColumnDataType type, ObjectReference objectReference)
Parameters
Returns
|
Edit this page
View Source
Equals(SheetCell)
Declaration
public abstract bool Equals(SheetCell other)
Parameters
Returns
|
Edit this page
View Source
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
|
Edit this page
View Source
GetHashCode()
Declaration
public override abstract int GetHashCode()
Returns
Overrides
|
Edit this page
View Source
IsNullOrEmpty()
Declaration
public abstract bool IsNullOrEmpty()
Returns
Operators
|
Edit this page
View Source
operator ==(SheetCell, SheetCell)
Declaration
public static bool operator ==(SheetCell a, SheetCell b)
Parameters
Returns
|
Edit this page
View Source
operator !=(SheetCell, SheetCell)
Declaration
public static bool operator !=(SheetCell a, SheetCell b)
Parameters
Returns
Implements
Extension Methods