17 lines
		
	
	
		
			204 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			204 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace GoldPrinter.ExcelConstants
 | |
| {
 | |
| 	public enum BordersLineStyle
 | |
| 	{
 | |
| 		xlContinuous,
 | |
| 		xlDash,
 | |
| 		xlDashDot,
 | |
| 		xlDashDotDot,
 | |
| 		xlDot,
 | |
| 		xlDouble,
 | |
| 		xlLineStyleNone,
 | |
| 		xlSlantDashDot
 | |
| 	}
 | |
| }
 |