25 references to PropertyItem
PresentationFramework-SystemDrawing (1)
SystemDrawingExtension.cs (1)
122PropertyItem piComment = img.GetPropertyItem(37510);
System.Drawing (1)
System.Drawing.cs (1)
100[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Imaging.PropertyItem))]
System.Drawing.Common (3)
Special\NotSupported.cs (3)
763public System.Drawing.Imaging.PropertyItem[] PropertyItems { get { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } 789public System.Drawing.Imaging.PropertyItem? GetPropertyItem(int propid) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 804public void SetPropertyItem(System.Drawing.Imaging.PropertyItem propitem) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
System.Drawing.Common.Tests (20)
System\Drawing\ImageTests.cs (14)
40PropertyItem[] items = bitmap.PropertyItems; 98PropertyItem item = bitmap.GetPropertyItem(PropertyTagExifUserComment); 129PropertyItem item1 = source.GetPropertyItem(PropertyTagExifUserComment); 130PropertyItem item2 = source.GetPropertyItem(PropertyTagChrominanceTable); 131PropertyItem item3 = source.GetPropertyItem(PropertyTagLuminanceTable); 200PropertyItem item1 = source.GetPropertyItem(PropertyTagExifUserComment); 201PropertyItem item2 = source.GetPropertyItem(PropertyTagChrominanceTable); 202PropertyItem item3 = source.GetPropertyItem(PropertyTagLuminanceTable); 231PropertyItem item = source.GetPropertyItem(PropertyTagExifUserComment); 238PropertyItem[] items = bitmap.PropertyItems; 289PropertyItem item = bitmap.GetPropertyItem(PropertyTagExifUserComment); 296PropertyItem[] items = bitmap.PropertyItems; 432PropertyItem item = source.GetPropertyItem(PropertyTagExifUserComment); 439PropertyItem[] items = bitmap.PropertyItems;
System\Drawing\Imaging\PropertyItemTests.cs (6)
17PropertyItem item = bitmap.GetPropertyItem(PropertyTagLuminanceTable); 29PropertyItem item = bitmap.GetPropertyItem(PropertyTagLuminanceTable); 41PropertyItem item = bitmap.GetPropertyItem(PropertyTagLuminanceTable); 58PropertyItem item = bitmap.GetPropertyItem(PropertyTagLuminanceTable); 77PropertyItem[] propItems = clone.PropertyItems; 78PropertyItem propItem = propItems[0];