コード例 #1
0
 /// <summary>
 /// Parse the bidi response.
 /// </summary>
 /// <param name="bidiResponse">Bidi response XML data.</param>
 public BidiHelper(string bidiResponse)
 {
     BidiResponseParser parser = new BidiResponseParser(bidiResponse);
     InkLevelC = parser.GetInkLevel(Colors.Cyan);
     InkLevelM = parser.GetInkLevel(Colors.Magenta);
     InkLevelY = parser.GetInkLevel(Colors.Yellow);
     InkLevelK = parser.GetInkLevel(Colors.Black);
 }
コード例 #2
0
        /// <summary>
        /// Parse the bidi response.
        /// </summary>
        /// <param name="bidiResponse">Bidi response XML data.</param>
        public BidiHelper(string bidiResponse)
        {
            BidiResponseParser parser = new BidiResponseParser(bidiResponse);

            InkLevelC = parser.GetInkLevel(Colors.Cyan);
            InkLevelM = parser.GetInkLevel(Colors.Magenta);
            InkLevelY = parser.GetInkLevel(Colors.Yellow);
            InkLevelK = parser.GetInkLevel(Colors.Black);
        }