Exemple #1
0
 private int GetLegendNodeStateImageIndex(GeoRasterStyle style)
 {
     if (style.Visible)
     {
         return 2;
     }
     return 1;
 }
 private GeoDiscreteSytle ConvertToDiscrete(GeoRasterStyle discreteStyle)
 {
     return (discreteStyle as GeoDiscreteSytle);
 }
 private GeoIntervalSytle ConvertToInterval(GeoRasterStyle IntervalStyle)
 {
     return (IntervalStyle as GeoIntervalSytle);
 }
Exemple #4
0
 private bool IsValidData(short clutterId, GeoRasterStyle style)
 {
     if ((clutterId == -32768) || (style == null))
     {
         return false;
     }
     return true;
 }