15 lines
		
	
	
		
			136 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			136 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace GoldPrinter
 | |
| {
 | |
| 	public enum GridMergeFlag
 | |
| 	{
 | |
| 		None,
 | |
| 		Row,
 | |
| 		Col,
 | |
| 		ColDependOnBeforeGroup,
 | |
| 		Both,
 | |
| 		Any
 | |
| 	}
 | |
| }
 |