System.Windows.Forms.DataFormats.Format.Add C# (CSharp) Méthode

Add() static private méthode

static private Add ( string name ) : System.Text.Format
name string
Résultat System.Text.Format
			internal static Format Add (string name)
			{
				Format f;

				f = Find (name);
				if (f == null) {
					IntPtr cliphandle;
					/*
					cliphandle = XplatUI.ClipboardOpen (false);
					f = new Format (name, XplatUI.ClipboardGetID (cliphandle, name));
					XplatUI.ClipboardClose (cliphandle);
					*/
				}
				return f;
			}

Same methods

DataFormats.Format::Add ( int id ) : System.Text.Format
DataFormats.Format