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

ChartTitle() публичный Метод

Initializes a new instance of the charttitle class.
public ChartTitle ( Chart chart, string styleName ) : System
chart Chart
styleName string The style name.
Результат System
		public ChartTitle(Chart chart, string styleName)
		{
			this.Chart				= chart;
			this.Document			= chart.Document;
			this.NewXmlNode(styleName);
			this.InitStandards();

			if (styleName != null)
			{
				this.StyleName		= styleName;
				this.TitleStyle		= new TitleStyle(this.Document, styleName);
				this.Chart.Styles.Add(this.TitleStyle);
			}

			//chart.Content .Add (this);
		}

Same methods

ChartTitle::ChartTitle ( Chart chart ) : System
ChartTitle::ChartTitle ( IDocument document, XmlNode node ) : System