# C1Zoom Boundary FeedBack

You can specify how to show visual feedback when the scroll reaches the end point by using the C1Zoom.BoundaryFeedbackMode property.

## Content



You can specify how to show visual feedback when the scroll reaches the end point by using the **C1Zoom.BoundaryFeedbackMode** property.

If the **C1Zoom.BoundaryFeedbackMode** property is **Split** when the scrolling reaches the end point, the content area will continue to scroll a little, and then bound back. This is the default behavior.

If the **C1Zoom.BoundaryFeedbackMode** property is **Standard** when the scrolling reaches the end point, the content area will continue to scroll a little, and then bound back.

Use the following code to programatically set the **C1Zoom.BoundaryFeedbackMode** property to **Standard**:

```vbnet
C1Zoom1.BoundaryFeedbackMode = C1.Win.TouchToolKit.BoundaryFeedbackMode.Standard
```

```TITLE
c1Zoom1.BoundaryFeedbackMode = C1.Win.TouchToolKit.BoundaryFeedbackMode.Standard;
```