PdfRpt.ColumnsItemsTemplates.ProgressBarField.getPercent C# (CSharp) Method

getPercent() private static method

private static getPercent ( CellAttributes attributes ) : float
attributes CellAttributes
return float
        private static float getPercent(CellAttributes attributes)
        {
            return attributes.RowData.Value == null ? 0 : float.Parse(attributes.RowData.Value.ToSafeString(), CultureInfo.InvariantCulture);
        }