[RESOLVED] how to convert this to vb .net
private String _sXAxisTitle;
private String _sChartTitle;
private Int32 _iUserWidth = 300;
private String [] _sYAxisItems;
private Int32 [] _iYAxisValues;
public Int32 UserWidth {
get { return _iUserWidth; }
set { _iUserWidth = value; }
}
public Int32 [] YAxisValues {
get { return _iYAxisValues; }
set { _iYAxisValues = value; }
}
public String [] YAxisItems {
get { return _sYAxisItems; }
set { _sYAxisItems = value; }
}
public String XAxisTitle {
get { return _sXAxisTitle; }
set { _sXAxisTitle = value; }
}
public String ChartTitle {
get { return _sChartTitle; }
set { _sChartTitle = value; }
}
Re: how to convert this to vb .net
VB Code:
Private _sXAxisTitle As String
Private _sChartTitle As String
Private _iUserWidth As Int32 = 300
Private _sYAxisItems As String()
Private _iYAxisValues As Int32()
Public Property UserWidth() As Int32
Get
Return _iUserWidth
End Get
Set
_iUserWidth = value
End Set
End Property
Public Property YAxisValues() As Int32()
Get
Return _iYAxisValues
End Get
Set
_iYAxisValues = value
End Set
End Property
Public Property YAxisItems() As String()
Get
Return _sYAxisItems
End Get
Set
_sYAxisItems = value
End Set
End Property
Public Property XAxisTitle() As String
Get
Return _sXAxisTitle
End Get
Set
_sXAxisTitle = value
End Set
End Property
Public Property ChartTitle() As String
Get
Return _sChartTitle
End Get
Set
_sChartTitle = value
End Set
End Property