AODL.Document.Content.Charts.ChartStyleProcessor.CreateChartProperty C# (CSharp) Метод

CreateChartProperty() приватный Метод

create the chart property
private CreateChartProperty ( IStyle style, XmlNode node ) : IProperty
style IStyle
node System.Xml.XmlNode
Результат IProperty
		private IProperty CreateChartProperty(IStyle style,XmlNode node)
		{
			if (style is PlotAreaProperties )
				return CreatePlotAreaProperties(style,node);

			if (style is AxesProperties  )
				return CreateAxesProperties(style,node);
			else
				return CreateChartProperties(style,node);
		}