Removing Nodes From Shapes

SyCoDeath

New Member
Joined
Aug 16, 2011
Messages
8
All,

I have the following code

Code:
Private Sub WorksiteShapeDefaults_Click()
    Dim shp As Shape
    Dim vaDefault As Variant
     
    Const sDELIM = "-"
    Const sName As String = "Worksite"
    Const rName As String = "sRange"
    For Each shp In ActiveSheet.Shapes
        If Len(shp.AlternativeText) > 0 Then
            vaDefault = Split(shp.AlternativeText, sDELIM)
            shp.Fill.ForeColor.RGB = RGB(0, 0, 0)
            shp.Width = vaDefault(0)
            shp.Height = vaDefault(1)
            shp.Top = Range(Replace(shp.Name, sName, rName)).Top
            shp.Left = Range(Replace(shp.Name, sName, rName)).Left
        End If
    Next shp
End Sub

I would like to amend this code so that i can remove excess nodes (Edit Points)

I have 140 Shapes which were lines made into rectangles. so they have 4 Edit Points... From time to time i will add extra Edit Points so that the shapes can be shown on a map. The above code will move all of these shapes into their shape range, but i cannot figure out how to remove all but the corner points.

I would be really happy if someone could point me in the right direction.

Thanks in advance...
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"

Forum statistics

Threads
1,224,586
Messages
6,179,707
Members
452,939
Latest member
WCrawford

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top