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

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

Creates the text properties.
private CreateTextProperties ( IStyle style, XmlNode propertyNode ) : TextProperties
style IStyle The style.
propertyNode System.Xml.XmlNode The property node.
Результат AODL.Document.Styles.Properties.TextProperties
		private TextProperties CreateTextProperties(IStyle style, XmlNode propertyNode)
		{
			TextProperties textProperties		= new TextProperties(style);
			textProperties.Node					= propertyNode;

			return textProperties;
		}