System::Drawing::Imaging::PropertyItem class

PropertyItem class

Represents a metadata property to be included in an image file. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class PropertyItem : public System::Object

Methods

MethodDescription
get_Id() constReturns the ID of the property represented by the current object.
get_Len() constReturns the length of the property represented by the current object in bytes.
get_Type() constReturns the type of the property represented by the current object in bytes.
get_Value() constReturns the value of the property represented by the current object in bytes.
PropertyItem()Constructs a new instance of PropertyItem class.
set_Id(int32_t)Sets the ID of the property represented by the current object.
set_Len(int32_t)Sets the length of the property represented by the current object in bytes.
set_Type(int16_t)Sets the type of the property represented by the current object in bytes.
set_Value(const System::ArrayPtr<uint8_t>&)Sets the type of the property represented by the current object in bytes.

See Also