System.Windows.Forms.DataFormats.Format.Add C# (CSharp) Method

Add() static private method

static private Add ( int id ) : System.Text.Format
id int
return System.Text.Format
			internal static Format Add (int id) {
				Format f;

				f = Find (id);
				if (f == null)
					f = new Format("Format" + id.ToString(), id);
				return f;
			}

Same methods

DataFormats.Format::Add ( string name ) : System.Text.Format
DataFormats.Format