PdfRpt.ColumnsItemsTemplates.ProgressBarField.getPercent C# (CSharp) Méthode

getPercent() private static méthode

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