Rock.Web.UI.Controls.AttributeField.GetValue C# (CSharp) Method

GetValue() protected method

Retrieves the value of the field bound to the T:System.Web.UI.WebControls.BoundField object.
protected GetValue ( System controlContainer ) : object
controlContainer System The container for the field value.
return object
        protected override object GetValue( System.Web.UI.Control controlContainer )
        {
            var row = controlContainer as GridViewRow;
            if ( row != null )
            {
                return GetRowValue( row, this.Condensed, true );
            }

            return string.Empty;
        }