1 instantiation of PropertyItemInternal
System.Drawing (1)
commonui\System\Drawing\PropertyItemInternal.cs (1)
49PropertyItemInternal propItemInternal = new PropertyItemInternal();
11 references to PropertyItemInternal
System.Drawing (11)
commonui\System\Drawing\Advanced\Gdiplus.cs (1)
1791internal static extern int GdipSetPropertyItem(HandleRef image, PropertyItemInternal propitem);
commonui\System\Drawing\Image.cs (4)
1225propitem = PropertyItemInternal.ConvertFromMemory(propdata, 1)[0]; 1253PropertyItemInternal propItemInternal = PropertyItemInternal.ConvertFromPropertyItem(propitem); 1297props = PropertyItemInternal.ConvertFromMemory(propdata, count);
commonui\System\Drawing\PropertyItemInternal.cs (6)
48internal static PropertyItemInternal ConvertFromPropertyItem(PropertyItem propItem) { 49PropertyItemInternal propItemInternal = new PropertyItemInternal(); 69PropertyItemInternal propcopy = null; 71propcopy = (PropertyItemInternal) UnsafeNativeMethods.PtrToStructure(propdata, 72typeof(PropertyItemInternal)); 90 propdata = (IntPtr)((long)propdata + (int)Marshal.SizeOf(typeof(PropertyItemInternal)));