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