Video Flip
RadWebCam allows you to change the flip of the video feed from the attached camera. To do this, set the FlipVertically and FlipHorizontally properties of RadWebCam to true.
Example 1: Setting the flip in XAML
<telerik:RadWebCam FlipVertically="True" FlipHorizontally="True" />
Example 2: Setting the flip in code
this.radWebCam.FlipVertically = true;
this.radWebCam.FlipHorizontally = true;