1 instantiation of PropertyItem
System.Drawing.Common (1)
System\Drawing\Imaging\PropertyItem.cs (1)
42return new()
33 references to PropertyItem
PresentationFramework-SystemDrawing (1)
SystemDrawingExtension.cs (1)
82PropertyItem? piComment = bitmap.GetPropertyItem(37510);
System.Drawing (1)
System.Drawing.cs (1)
100[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Imaging.PropertyItem))]
System.Drawing.Common (11)
System\Drawing\Image.cs (8)
546/// Gets an array of <see cref='PropertyItem'/> objects that describe this <see cref='Image'/>. 549public Imaging.PropertyItem[] PropertyItems 561Imaging.PropertyItem[] result = new Imaging.PropertyItem[(int)count]; 570result[i] = Imaging.PropertyItem.FromNative(properties + i); 674public Imaging.PropertyItem? GetPropertyItem(int propid) 690return Imaging.PropertyItem.FromNative(property); 708public unsafe void SetPropertyItem(Imaging.PropertyItem propitem)
System\Drawing\ImageInfo.cs (2)
42Imaging.PropertyItem? frameDelayItem = image.GetPropertyItem(PropertyTagFrameDelay); 85Imaging.PropertyItem? loopCountItem = image.GetPropertyItem(PropertyTagLoopCount);
System\Drawing\Imaging\PropertyItem.cs (1)
35internal static PropertyItem FromNative(GdiPlus.PropertyItem* native)
System.Drawing.Common.Tests (20)
System\Drawing\ImageTests.cs (14)
43PropertyItem[] items = bitmap.PropertyItems; 101PropertyItem item = bitmap.GetPropertyItem(PropertyTagExifUserComment); 132PropertyItem item1 = source.GetPropertyItem(PropertyTagExifUserComment); 133PropertyItem item2 = source.GetPropertyItem(PropertyTagChrominanceTable); 134PropertyItem item3 = source.GetPropertyItem(PropertyTagLuminanceTable); 203PropertyItem item1 = source.GetPropertyItem(PropertyTagExifUserComment); 204PropertyItem item2 = source.GetPropertyItem(PropertyTagChrominanceTable); 205PropertyItem item3 = source.GetPropertyItem(PropertyTagLuminanceTable); 234PropertyItem item = source.GetPropertyItem(PropertyTagExifUserComment); 241PropertyItem[] items = bitmap.PropertyItems; 292PropertyItem item = bitmap.GetPropertyItem(PropertyTagExifUserComment); 299PropertyItem[] items = bitmap.PropertyItems; 435PropertyItem item = source.GetPropertyItem(PropertyTagExifUserComment); 442PropertyItem[] 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];