Exemplo n.º 1
0
        public static Fill GetBaseFill(Fill fill)
        {
            var fillDecorator = fill as FillDecorator;

            return(fillDecorator == null ? fill : GetBaseFill(fillDecorator._fill));
        }
Exemplo n.º 2
0
 public static bool ContainsAnyDecorator(Fill fill)
 {
     return(fill as FillDecorator != null);
 }
Exemplo n.º 3
0
 protected FillDecorator(Fill fill)
 {
     _fill = fill;
 }