Class AlgorithmStepDataCopier
Inheritance
AlgorithmStepDataCopier
Assembly: LemonEdge.API.Entities.Auto.dll
Syntax
[DataContract]
public class AlgorithmStepDataCopier : BaseEntity, IAlgorithmStepDataCopier, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ICloneableAsync<IAlgorithmStepDataCopier>
Constructors
AlgorithmStepDataCopier()
Declaration
public AlgorithmStepDataCopier()
Properties
AlgorithmID
Declaration
[RequiredNoDefaultIDValidation]
public Guid AlgorithmID { get; set; }
Property Value
AlgorithmID_Label
Declaration
public string AlgorithmID_Label { get; set; }
Property Value
AlgorithmID_Label_Silent
Declaration
[NotMapped]
public string AlgorithmID_Label_Silent { get; set; }
Property Value
EndCell
Holds the end cell of a range to copy data from, can be the same as StartCell if just one cell. Of the format Sheet!CellRef
Declaration
[Required]
[StringLength(250)]
public string EndCell { get; set; }
Property Value
NumberOfRows
Indicates the system will continute to process rows from the OutputStartCell for this specified amount of rows. If null it will continute until the data for the next row is empty
Declaration
public short? NumberOfRows { get; set; }
Property Value
Sequence
[Key] Holds the order of this data to copy within the algorithm run.
Declaration
public short Sequence { get; set; }
Property Value
StartCell
Holds the start cell of a range to copy data from. Of the format Sheet!CellRef
Declaration
[Required]
[StringLength(250)]
public string StartCell { get; set; }
Property Value
Methods
CopyFromEntity(IBaseEntity)
Declaration
protected override void CopyFromEntity(IBaseEntity src)
Parameters
Overrides
CopyFromSource(IAlgorithmStepDataCopier)
Updates all properties in this item to have the same properties as the source object.
Declaration
public void CopyFromSource(IAlgorithmStepDataCopier source)
Parameters
Implements
Extension Methods