AODL.Document.Import.OpenDocument.NodeProcessors.LocalStyleProcessor.CreateTabStopStyle C# (CSharp) Метод

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

Creates the tab stop style.
private CreateTabStopStyle ( XmlNode styleNode ) : TabStopStyle
styleNode System.Xml.XmlNode The style node.
Результат AODL.Document.Styles.TabStopStyle
		private TabStopStyle CreateTabStopStyle(XmlNode styleNode)
		{
			TabStopStyle tabStopStyle			= new TabStopStyle(this._document, styleNode.CloneNode(true));
			IPropertyCollection pCollection		= new IPropertyCollection();

			return tabStopStyle;
		}