コード例 #1
0
        private void TestHighlightPoints_SelectSlide()
        {
            PpOperations.SelectSlide(4);
            PplFeatures.HighlightPoints();

            AssertIsSame(4, 5);
        }
コード例 #2
0
        private void TestHighlightPoints_SelectText()
        {
            PpOperations.SelectSlide(10);
            PpOperations.SelectAllTextInShape("First Textbox");
            PplFeatures.HighlightPoints();

            AssertIsSame(10, 11);
        }
コード例 #3
0
        private void TestHighlightPoints_SelectTextBoxes()
        {
            PpOperations.SelectSlide(7);
            PpOperations.SelectShapes(new[] { "First Textbox", "Second Textbox", "Third TextBox" });
            PplFeatures.HighlightPoints();

            AssertIsSame(7, 8);
        }
コード例 #4
0
        private void TestHighlightPoints_SelectEndOfText()
        {
            PpOperations.SelectSlide(22);
            PpOperations.SelectTextInShape("First Textbox", 414, 414);
            PplFeatures.HighlightPoints();

            AssertIsSame(22, 23);
        }