PdfRpt.ColumnsItemsTemplates.ProgressBarField.getPercent C# (CSharp) Метод

getPercent() приватный статический Метод

private static getPercent ( CellAttributes attributes ) : float
attributes CellAttributes
Результат float
        private static float getPercent(CellAttributes attributes)
        {
            return attributes.RowData.Value == null ? 0 : float.Parse(attributes.RowData.Value.ToSafeString(), CultureInfo.InvariantCulture);
        }