Пример #1
0
 /**
  * Checks if the text belongs to a marked content sequence
  * with a given mcid.
  * @param mcid a marked content id
  * @param checkTheTopmostLevelOnly indicates whether to check the topmost level of marked content stack only
  * @return true if the text is marked with this id
  * @since 5.3.5
  */
 public bool HasMcid(int mcid, bool checkTheTopmostLevelOnly)
 {
     if (checkTheTopmostLevelOnly)
     {
         if (markedContentInfos is IList)
         {
             IList <MarkedContentInfo> mci = (IList <MarkedContentInfo>)markedContentInfos;
             // Java and C# Stack classes have different numeration direction, so top element of the stack is
             // at last postion in Java and at first position in C#
             MarkedContentInfo info = mci.Count > 0 ? mci[0] : null;
             return((info != null && info.HasMcid()) ? info.GetMcid() == mcid : false);
         }
     }
     else
     {
         foreach (MarkedContentInfo info in markedContentInfos)
         {
             if (info.HasMcid())
             {
                 if (info.GetMcid() == mcid)
                 {
                     return(true);
                 }
             }
         }
     }
     return(false);
 }
Пример #2
0
 /**
  * @return the marked content associated with the TextRenderInfo instance.
  */
 virtual public int?GetMcid()
 {
     if (markedContentInfos is IList)
     {
         IList <MarkedContentInfo> mci = (IList <MarkedContentInfo>)markedContentInfos;
         // Java and C# Stack classes have different numeration direction, so top element of the stack is
         // at last postion in Java and at first position in C#
         MarkedContentInfo info = mci.Count > 0 ? mci[0] : null;
         return((info != null && info.HasMcid()) ? (int?)info.GetMcid() : null);
     }
     return(null);
 }