Index: src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/SharpMapGisPropertyInfoProvider.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/SharpMapGisPropertyInfoProvider.cs (.../SharpMapGisPropertyInfoProvider.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/SharpMapGisPropertyInfoProvider.cs (.../SharpMapGisPropertyInfoProvider.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -21,70 +21,70 @@ yield return new PropertyInfo(); yield return new PropertyInfo(); yield return new PropertyInfo - { - AdditionalDataCheck = o => o.Style.GeometryType == typeof(IPoint) - }; + { + AdditionalDataCheck = o => o.Style.GeometryType == typeof(IPoint) + }; yield return new PropertyInfo - { - AdditionalDataCheck = o => o.Style.GeometryType == typeof (IPolygon) - || o.Style.GeometryType == typeof (IMultiPolygon) - }; + { + AdditionalDataCheck = o => o.Style.GeometryType == typeof(IPolygon) + || o.Style.GeometryType == typeof(IMultiPolygon) + }; yield return new PropertyInfo - { - AdditionalDataCheck = o => o.Style.GeometryType == typeof (ILineString) - || o.Style.GeometryType == typeof (IMultiLineString) - }; + { + AdditionalDataCheck = o => o.Style.GeometryType == typeof(ILineString) + || o.Style.GeometryType == typeof(IMultiLineString) + }; yield return new PropertyInfo(); yield return new PropertyInfo - { - AdditionalDataCheck = o => o.GeometryType == typeof (IPoint) - }; + { + AdditionalDataCheck = o => o.GeometryType == typeof(IPoint) + }; yield return new PropertyInfo - { - AdditionalDataCheck = o => o.GeometryType == typeof (IPolygon) - || o.GeometryType == typeof (IMultiPolygon) - }; + { + AdditionalDataCheck = o => o.GeometryType == typeof(IPolygon) + || o.GeometryType == typeof(IMultiPolygon) + }; yield return new PropertyInfo - { - AdditionalDataCheck = o => o.GeometryType == typeof (ILineString) - || o.GeometryType == typeof (IMultiLineString) - }; + { + AdditionalDataCheck = o => o.GeometryType == typeof(ILineString) + || o.GeometryType == typeof(IMultiLineString) + }; yield return new PropertyInfo(); yield return new PropertyInfo + { + AdditionalDataCheck = o => { - AdditionalDataCheck = o => - { - var themeItemVectorStyle = o.Style as VectorStyle; + var themeItemVectorStyle = o.Style as VectorStyle; - return themeItemVectorStyle != null - && themeItemVectorStyle.GeometryType == typeof (IPoint); - }, - GetObjectPropertiesData = o => o.Style - }; + return themeItemVectorStyle != null + && themeItemVectorStyle.GeometryType == typeof(IPoint); + }, + GetObjectPropertiesData = o => o.Style + }; yield return new PropertyInfo + { + AdditionalDataCheck = o => { - AdditionalDataCheck = o => - { - var themeItemVectorStyle = o.Style as VectorStyle; + var themeItemVectorStyle = o.Style as VectorStyle; - return themeItemVectorStyle != null - && (themeItemVectorStyle.GeometryType == typeof (IPolygon) - || themeItemVectorStyle.GeometryType == typeof (IMultiPolygon)); - }, - GetObjectPropertiesData = o => o.Style - }; + return themeItemVectorStyle != null + && (themeItemVectorStyle.GeometryType == typeof(IPolygon) + || themeItemVectorStyle.GeometryType == typeof(IMultiPolygon)); + }, + GetObjectPropertiesData = o => o.Style + }; yield return new PropertyInfo + { + AdditionalDataCheck = o => { - AdditionalDataCheck = o => - { - var themeItemVectorStyle = o.Style as VectorStyle; + var themeItemVectorStyle = o.Style as VectorStyle; - return themeItemVectorStyle != null - && (themeItemVectorStyle.GeometryType == typeof (ILineString) - || themeItemVectorStyle.GeometryType == typeof (IMultiLineString)); - }, - GetObjectPropertiesData = o => o.Style - }; + return themeItemVectorStyle != null + && (themeItemVectorStyle.GeometryType == typeof(ILineString) + || themeItemVectorStyle.GeometryType == typeof(IMultiLineString)); + }, + GetObjectPropertiesData = o => o.Style + }; yield return new PropertyInfo(); yield return new PropertyInfo(); yield return new PropertyInfo();