Adds a new comment from an opened JPEG file or a comment for a file to be saved as a JPEG file. The comment will be added when the current image is written out (saved) as a JPEG file.
Syntax
'Declaration
Public Sub AddJpegComment( _
ByVal As Integer, _
ByVal As String _
)
'Usage
Dim instance As ImageX
Dim Index As Integer
Dim comment As String
instance.AddJpegComment(Index, comment)
public void AddJpegComment(
int ,
string
)
public: void AddJpegComment(
int ,
string*
)
public:
void AddJpegComment(
int ,
String^
)
Parameters
- Index
- An integer value which represents the index at which the comment is added.
- comment
- A string value which represents the comment to be added to the list.
See Also