Spread for ASP.NET 7.0 Product Documentation
SpreadPanningMode Enumeration
Example  See Also  Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace : SpreadPanningMode Enumeration


Glossary Item Box

Specifies how Spread reacts to touch manipulation.

Syntax

Visual Basic (Declaration) 
Public Enum SpreadPanningMode 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As SpreadPanningMode
C# 
public enum SpreadPanningMode : System.Enum 

Members

MemberDescription
BothSpread scrolls horizontally and vertically.
HorizontalOnlySpread scrolls horizontally only.
NoneSpread does not respond to touch input.
VerticalOnlySpread scrolls vertically only.

Example

This example sets the SpreadPanningMode enumeration.
C#Copy Code
FpSpread1.Sheets[0].Columns.Count = 10;
FpSpread1.Sheets[0].Rows.Count = 20;
FpSpread1.TouchInfo.PanningMode = FarPoint.Web.Spread.SpreadPanningMode.Both;
VB.NETCopy Code
FpSpread1.Sheets(0).Columns.Count = 10
FpSpread1.Sheets(0).Rows.Count = 20
FpSpread1.TouchInfo.PanningMode = FarPoint.Web.Spread.SpreadPanningMode.Both

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Web.Spread.SpreadPanningMode

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.