コード例 #1
0
ファイル: MathMLMathElement.cs プロジェクト: Altaxo/Altaxo
		/// <summary>
		/// creates a new MathMLOperatorElement. 
		/// </summary>
		/// <param name="prefix">The prefix of the new element (if any).</param>
		/// <param name="localName">The local name of the new element.</param>
		/// <param name="namespaceURI">The namespace URI of the new element (if any).</param>
		/// <param name="doc">The owner document</param>		
		public MathMLMathElement(string prefix, string localName, string namespaceURI, MathMLDocument doc)
			: base(prefix, localName, namespaceURI, doc)
		{
			container_impl = new MathMLContainerImpl(this);
		}
コード例 #2
0
 /// <summary>
 /// creates a new MathMLOperatorElement.
 /// </summary>
 /// <param name="prefix">The prefix of the new element (if any).</param>
 /// <param name="localName">The local name of the new element.</param>
 /// <param name="namespaceURI">The namespace URI of the new element (if any).</param>
 /// <param name="doc">The owner document</param>
 public MathMLPresentationContainer(string prefix, string localName, string namespaceURI, MathMLDocument doc)
     : base(prefix, localName, namespaceURI, doc)
 {
     container = new MathMLContainerImpl(this);
 }
コード例 #3
0
 /// <summary>
 /// creates a new MathMLOperatorElement.
 /// </summary>
 /// <param name="prefix">The prefix of the new element (if any).</param>
 /// <param name="localName">The local name of the new element.</param>
 /// <param name="namespaceURI">The namespace URI of the new element (if any).</param>
 /// <param name="doc">The owner document</param>
 public MathMLMathElement(string prefix, string localName, string namespaceURI, MathMLDocument doc)
     : base(prefix, localName, namespaceURI, doc)
 {
     container_impl = new MathMLContainerImpl(this);
 }
コード例 #4
0
		/// <summary>
		/// creates a new MathMLOperatorElement. 
		/// </summary>
		/// <param name="prefix">The prefix of the new element (if any).</param>
		/// <param name="localName">The local name of the new element.</param>
		/// <param name="namespaceURI">The namespace URI of the new element (if any).</param>
		/// <param name="doc">The owner document</param>        
		public MathMLPresentationContainer(string prefix, string localName, string namespaceURI, MathMLDocument doc)
			: base(prefix, localName, namespaceURI, doc)
		{
			container = new MathMLContainerImpl(this);
		}