 | CDBAddRealComment Method |
Add a comment with a float value to the activity log of the database.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void AddRealComment(
string comment,
double val,
int indent
)
public void AddRealComment(
string comment,
double val,
int indent
)
Public Sub AddRealComment (
comment As String,
val As Double,
indent As Integer
)
Public Sub AddRealComment (
comment As String,
val As Double,
indent As Integer
)
public:
void AddRealComment(
String^ comment,
double val,
int indent
)
public:
void AddRealComment(
String^ comment,
double val,
int indent
)
member AddRealComment :
comment : string *
val : float *
indent : int -> unit
member AddRealComment :
comment : string *
val : float *
indent : int -> unit
Parameters
- comment
- Type: SystemString
Comment - val
- Type: SystemDouble
Value - indent
- Type: SystemInt32
Indent comment one tab?
Remarks
The comment is written in the form:
Comment: Value
and if followed by a carriage return.
The activity log is created automatically if it does not exist.
See Notes in AddComment_DB.
See Also