BrightIdeasSoftware.DateTimeClusteringStrategy.GetClusterDisplayLabel C# (CSharp) Метод

GetClusterDisplayLabel() публичный Метод

Gets the display label that the given cluster should use
public GetClusterDisplayLabel ( ICluster cluster ) : string
cluster ICluster
Результат string
        public override string GetClusterDisplayLabel(ICluster cluster) {
            DateTime? dateTime = cluster.ClusterKey as DateTime?; 

            return this.ApplyDisplayFormat(cluster, dateTime.HasValue ? this.DateToString(dateTime.Value) : NULL_LABEL);
        }