GetValue() public method

public GetValue ( ) : int
return int
Example #1
0
 private static void AppendECI(CharacterSetECI eci, BitVector bits)
 {
     bits.AppendBits(Mode.ECI.GetBits(), 4);
     // This is correct for values up to 127, which is all we need now.
     bits.AppendBits(eci.GetValue(), 8);
 }
Example #2
0
 private static void AppendECI(CharacterSetECI eci, BitVector bits) {
     bits.AppendBits(Mode.ECI.GetBits(), 4);
     // This is correct for values up to 127, which is all we need now.
     bits.AppendBits(eci.GetValue(), 8);
 }