You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
RaymondWise
changed the title
bUTLChartSeries Public name
bUTLChartSeries Public Declarations
Nov 1, 2016
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.
The third Public declaration in
bUTLChartSeries
isBut 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
andLet
?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?The text was updated successfully, but these errors were encountered: