public override void Apply(Drawable d) { base.Apply(d); FlowContainer flowContainer = (FlowContainer)d; flowContainer.Spacing = CurrentValue; }
public override void Apply(Drawable d) { base.Apply(d); FlowContainer t = d as FlowContainer; t.Spacing = CurrentValue; }
public override void Apply(ITransformable d) { base.Apply(d); FlowContainer t = d as FlowContainer; if (t != null) { t.Spacing = CurrentValue; } }