iTextSharp.text.pdf.codec.wmf.MetaDo.WriteWord C# (CSharp) Method

WriteWord() public static method

public static WriteWord ( Stream os, int v ) : void
os Stream
v int
return void
        public static void WriteWord(Stream os, int v)
        {
            os.WriteByte((byte)(v & 0xff));
            os.WriteByte((byte)((v >> 8) & 0xff));
        }