Exemplo n.º 1
0
        public void ExpandTop()
        {
            var context = new ExpandContext
            {
                Direction = Direction.Top,
                Pixels    = 240
            };

            _subject.Run(context, _options);
        }
Exemplo n.º 2
0
        public void ExpandBottom()
        {
            var context = new ExpandContext
            {
                Direction = Direction.Bottom,
                Pixels    = 240
            };

            _subject.Run(context, _options);
        }
Exemplo n.º 3
0
        public void ExpandRight()
        {
            var context = new ExpandContext
            {
                Direction = Direction.Right,
                Pixels    = 384
            };

            _subject.Run(context, _options);
        }