mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	Co-authored-by: Elry <144011449+ElryWeeb@users.noreply.github.com> Co-authored-by: AlienHack <the4got10@windowslive.com> Co-authored-by: William Brockhus <pickeringw@gmail.com> Co-authored-by: Shivam Amin <xShivam.Amin@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			451 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			451 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.ComponentModel;
 | 
						|
 | 
						|
namespace API.Entities.Enums.UserPreferences;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// Enum values match PdfViewer's enums
 | 
						|
/// </summary>
 | 
						|
public enum PdfScrollMode
 | 
						|
{
 | 
						|
    [Description("Vertical")]
 | 
						|
    Vertical = 0,
 | 
						|
    [Description("Horizontal")]
 | 
						|
    Horizontal = 1,
 | 
						|
    // [Description("Wrapped")]
 | 
						|
    // Wrapped = 2,
 | 
						|
    /// <summary>
 | 
						|
    /// Single page view (tap to pagninate)
 | 
						|
    /// </summary>
 | 
						|
    [Description("Page")]
 | 
						|
    Page = 3
 | 
						|
}
 |