byronwall/bUTL

bUTLChartSeries Public Declarations

RaymondWise opened this issue · 1 comments

The third Public declaration in bUTLChartSeries is

Public name As Range

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

Public series as series

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?

Pretty sure these are public fields. I'll take a look and post a better response. If they are fields, it would probably be better to expose them as properties.