protected override void WriteProfile()
        {
            Int16 nStep = (Int16)(Step * 100);

            Bwr.Write((byte)((nStep >> 8) & 0xFF));
            Bwr.Write((byte)(nStep & 0xFF));
        }
Beispiel #2
0
        protected override void WriteProfile()
        {
            Int16 nZoomRate = (Int16)(ZoomRate * 100);

            Bwr.Write((byte)((nZoomRate >> 8) & 0xFF));
            Bwr.Write((byte)(nZoomRate & 0xFF));
        }
Beispiel #3
0
 protected override void WriteProfile()
 {
     Bwr.Write(EmptyValue);
 }
 protected override void WriteProfile()
 {
     Bwr.Write((byte)((LoopCount >> 8) & 0xFF));
     Bwr.Write((byte)(LoopCount & 0xFF));
 }
Beispiel #5
0
        protected override void WriteProfile()
        {
            Int16 nStep = (Int16)(Step * 100);

            Bwr.Write(nStep);
        }