I still don't understand. You mean, after scrolling you want a view being centered within Outline? If this is the case, have you tried Configure the snap positions? With the snap positions you can instruct the Slide Handler to stop at predetermined positions. Knowing the size of the views within the Outline you can calculate the snap position and configure the Slide Touch Handler. This, however, works with views having equal size.
If the views have different size, you can configure the Slide Touch Handler to snap at a multiple of the smallest view. For example, if you display within the Outline Box views with 20, 30, and 60 pixel height, then you can configure the snap position to be 10. This is a multiple value valid for all three view sizes.
Then you can implement an OnEnd slot method to react to the end of the slide animation. This slot method is called when the Slide Touch Handler is finished with the scrolling. In the method you can determine which view is lying near to the center of the Outline Box. Knowing this view you can calculate the missing displaycement to adjust the scroll position, so that view will appear in the center of the Outline Box. Knowing this displacement, you can either adapt the value of the Outline ScrollOffset property or use an animation effect to do this smoot - as explained in my first answer.
Assuming, I understood your application case, in order to have the very first/last view in the center of the Outline Box you will need to add some additional gap views before the first and after the last real view. You can use for this purpose e.g. the Filled Rectangle view configured with transparent color #00000000. The view will thus not appear, the Outline Box however will calculate with its size so you can scroll and arrange the first/last real view in the center of the Outline Box.
Best regards
Paul