forked from stride3d/stride
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPropertyItem.cs
More file actions
42 lines (40 loc) · 1.34 KB
/
PropertyItem.cs
File metadata and controls
42 lines (40 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace FreeImageAPI;
//
// Summary:
// Encapsulates a metadata property to be included in an image file. Not inheritable.
public sealed class PropertyItem
{
//
// Summary:
// Gets or sets the ID of the property.
//
// Returns:
// The integer that represents the ID of the property.
public int Id { get; set; }
//
// Summary:
// Gets or sets the length (in bytes) of the System.Drawing.Imaging.PropertyItem.Value
// property.
//
// Returns:
// An integer that represents the length (in bytes) of the System.Drawing.Imaging.PropertyItem.Value
// byte array.
public int Len { get; set; }
//
// Summary:
// Gets or sets an integer that defines the type of data contained in the System.Drawing.Imaging.PropertyItem.Value
// property.
//
// Returns:
// An integer that defines the type of data contained in System.Drawing.Imaging.PropertyItem.Value.
public short Type { get; set; }
//
// Summary:
// Gets or sets the value of the property item.
//
// Returns:
// A byte array that represents the value of the property item.
public byte[]? Value { get; set; }
}