예제 #1
0
 public NoteFreehand(NoteFreehand rhs)
 {
     this.widthValue          = rhs.widthValue;
     this.pointsValue         = rhs.pointsValue;
     this.strikeoutWidthValue = rhs.strikeoutWidthValue;
     this.strikeoutColorValue = rhs.strikeoutColorValue;
 }
예제 #2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            NoteFreehand obj  = (NoteFreehand)obj1;
            BOutputBin   bout = (BOutputBin)bout1;
            BBufferBin   bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.width);
            if (version >= 700000000000039L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putInt(obj.strikeoutColor);
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putInt(obj.strikeoutWidth);
            }
            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.points, false, EloixClient.IndexServer.BSerializer_1853594537.instance);
        }
예제 #3
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin    bin = (BInputBin)bin1;
            NoteFreehand obj = (NoteFreehand)(obj1 != null ? obj1 : bin.onObjectCreated(new NoteFreehand()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.width = bbuf.getInt();
            if (version >= 700000000000039L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.strikeoutColor = bbuf.getInt();
                // checkpoint byps.gen.cs.PrintContext:449
                obj.strikeoutWidth = bbuf.getInt();
            }
            // checkpoint byps.gen.cs.PrintContext:449
            obj.points = (EloixClient.IndexServer.PointInfo[])bin.readObj(false, EloixClient.IndexServer.BSerializer_1853594537.instance);

            return(obj);
        }