Rock.Client.ReportFieldEntity.CopyPropertiesFrom C# (CSharp) Method

CopyPropertiesFrom() public method

Copies the base properties from a source ReportField object
public CopyPropertiesFrom ( ReportField source ) : void
source ReportField The source.
return void
        public void CopyPropertiesFrom( ReportField source )
        {
            this.Id = source.Id;
            this.ColumnHeaderText = source.ColumnHeaderText;
            this.ColumnOrder = source.ColumnOrder;
            this.DataSelectComponentEntityTypeId = source.DataSelectComponentEntityTypeId;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.ReportFieldType = source.ReportFieldType;
            this.ReportId = source.ReportId;
            this.Selection = source.Selection;
            this.ShowInGrid = source.ShowInGrid;
            this.SortDirection = source.SortDirection;
            this.SortOrder = source.SortOrder;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
ReportFieldEntity