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