コード例 #1
0
 object MathML.MathMLVisitor.Visit(MathMLActionElement e, object args)
 {
     if (selection == SelectionType.Prev || selection == SelectionType.Next)
     {
         return(((MathMLElement)e.ParentNode).Accept(this, e));
     }
     else
     {
         MathMLElement elm = e.FirstChild as MathMLElement;
         return(elm != null?elm.Accept(this, args) : e);
     }
 }
コード例 #2
0
ファイル: MathMLMeasurer.cs プロジェクト: Altaxo/Altaxo
		object MathML.MathMLVisitor.Visit(MathMLActionElement e, object args)
		{
			return ((Area)formatter.Visit(e, args)).BoundingBox;
		}
コード例 #3
0
 object MathML.MathMLVisitor.Visit(MathMLActionElement e, object args)
 {
     return(((Area)formatter.Visit(e, args)).BoundingBox);
 }