Index: src/Common/SharpMap/Styles/Shapes/cBlendItems.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/SharpMap/Styles/Shapes/cBlendItems.cs (.../cBlendItems.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/SharpMap/Styles/Shapes/cBlendItems.cs (.../cBlendItems.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -9,50 +9,28 @@ public class cBlendItems { // Fields - private System.Drawing.Color[] _iColor; - private float[] _iPoint; // Methods - public cBlendItems() - { - } + public cBlendItems() {} public cBlendItems(Color[] color, float[] Pt) { - this.iColor = color; - this.iPoint = Pt; + iColor = color; + iPoint = Pt; } + // Properties + [Category("Appearance")] + [Description("The Color for the Point")] + public Color[] iColor { get; set; } + + [Description("The Color for the Point")] + [Category("Appearance")] + public float[] iPoint { get; set; } + public override string ToString() { return "BlendItems"; } - - // Properties - [Category("Appearance"), Description("The Color for the Point")] - public System.Drawing.Color[] iColor - { - get - { - return this._iColor; - } - set - { - this._iColor = value; - } - } - - [Description("The Color for the Point"), Category("Appearance")] - public float[] iPoint - { - get - { - return this._iPoint; - } - set - { - this._iPoint = value; - } - } } } \ No newline at end of file