| FileStorageWriteComment Method |
Writes a comment.
The function writes a comment into file storage. The comments are skipped when the storage is read.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void WriteComment(
string comment,
bool append = false
)
Public Sub WriteComment (
comment As String,
Optional append As Boolean = false
)
public:
void WriteComment(
String^ comment,
bool append = false
)
member WriteComment :
comment : string *
?append : bool
(* Defaults:
let _append = defaultArg append false
*)
-> unit
Parameters
- comment
- Type: SystemString
The written comment, single-line or multi-line - append (Optional)
- Type: SystemBoolean
If true, the function tries to put the comment at the end of current line.
Else if the comment is multi-line, or if it does not fit at the end of the current line, the comment starts a new line.
See Also