G
Guest
hey all,
i'm trying to say something like the following but tripping up on syntax.
Basically, i'm trying to expose an enum that's inside my webusercontrol to my
client which is my .aspx page
private DisplayType _type;
public DisplayType Type
{
get { return _type; }
set { _type = value; }
}
public enum DisplayType
{
BarChart = OWC10.ChartChartTypeEnum.chChartTypeColumnClustered,
PieChart = OWC10.ChartChartTypeEnum.chChartTypePie
}
thanks,
rodchar
i'm trying to say something like the following but tripping up on syntax.
Basically, i'm trying to expose an enum that's inside my webusercontrol to my
client which is my .aspx page
private DisplayType _type;
public DisplayType Type
{
get { return _type; }
set { _type = value; }
}
public enum DisplayType
{
BarChart = OWC10.ChartChartTypeEnum.chChartTypeColumnClustered,
PieChart = OWC10.ChartChartTypeEnum.chChartTypePie
}
thanks,
rodchar