20 lines
		
	
	
		
			451 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			451 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.ComponentModel;
 | 
						|
using System.Data;
 | 
						|
using System.Drawing;
 | 
						|
using System.Text;
 | 
						|
using System.Windows.Forms;
 | 
						|
 | 
						|
namespace Volian.Controls.Library
 | 
						|
{
 | 
						|
	public partial class PreviewMultiLineRO : DevComponents.DotNetBar.Office2007Form //Form
 | 
						|
	{
 | 
						|
		public PreviewMultiLineRO(string thetext, string title)
 | 
						|
		{
 | 
						|
			InitializeComponent();
 | 
						|
			this.rtbPreviewMlRO.Text = thetext;
 | 
						|
			this.Text = title;
 | 
						|
		}
 | 
						|
	}
 | 
						|
} |