AODL.Document.Content.Text.FormatedText.GetSubOrSupStartTag C# (CSharp) 메소드

GetSubOrSupStartTag() 개인적인 메소드

Gets the sub or sup start tag.
private GetSubOrSupStartTag ( ) : string
리턴 string
		private string GetSubOrSupStartTag()
		{
			if (((TextStyle)this.Style).TextProperties.Position != null)
				if (((TextStyle)this.Style).TextProperties.Position.Length > 0)
					if (((TextStyle)this.Style).TextProperties.Position.ToLower().StartsWith("sub"))
						return "<sub>";
					else
						return "<sup>";
			
			return "";
		}