The third Public declaration in bUTLChartSeries is
But I can't figure out what it is or where it's being used. I see a few .Parent.Name but I think those are valid properties? I don't want to break anything by altering something incorrectly.
I'm also confused about
Are these properties? Like Get and Let?
Actually I'm confused on all of them
Public Values As Range (default is variant)- https://msdn.microsoft.com/en-us/library/office/ff197014.aspx
Public XValues As Range (default is variant) - https://msdn.microsoft.com/en-us/library/office/ff821866.aspx
Public name As Range (default is string) - https://msdn.microsoft.com/en-us/library/office/ff821935.aspx
Public SeriesNumber As Long
Public ChartType As XlChartType - https://msdn.microsoft.com/en-us/library/office/ff821546.aspx
Public series As series
Private pName As String
The private can be renamed, but what about the others? ValuesRange? Or is it starting to get tricky if they are properties?
The third Public declaration in
bUTLChartSeriesisBut I can't figure out what it is or where it's being used. I see a few
.Parent.Namebut I think those are valid properties? I don't want to break anything by altering something incorrectly.I'm also confused about
Are these properties? Like
GetandLet?Actually I'm confused on all of them
The private can be renamed, but what about the others?
ValuesRange? Or is it starting to get tricky if they are properties?