'Declaration Public Property TouchZoomSnapDistance As Single
'Usage Dim instance As FpSpread Dim value As Single instance.TouchZoomSnapDistance = value value = instance.TouchZoomSnapDistance
public float TouchZoomSnapDistance {get; set;}
'Declaration Public Property TouchZoomSnapDistance As Single
'Usage Dim instance As FpSpread Dim value As Single instance.TouchZoomSnapDistance = value value = instance.TouchZoomSnapDistance
public float TouchZoomSnapDistance {get; set;}
fpSpread1.AllowUserToTouchZoom = true;
fpSpread1.MinZoomFactor = .1F;
fpSpread1.TouchZoomSnapDistance = 1;
fpSpread1.TouchZoomSnapPoints.Add(1f);
fpSpread1.TouchZoomSnapPoints.Add(2f);
FpSpread1.AllowUserToTouchZoom = True
FpSpread1.MinZoomFactor = .1F
FpSpread1.TouchZoomSnapDistance = 1
FpSpread1.TouchZoomSnapPoints.Add(1f)
FpSpread1.TouchZoomSnapPoints.Add(2f)