Remarks Property

Type

System.String

 

Access

Get/Set

 

Description

The Remarks property is used to attach text information to a Serializable object.  It is generally used to provide a qualitative description of the object, but the contents of the Remarks property are solely for the convenience of the user and can be set accordingly.  

 

Example

[VB]

Private Sub GeoCalcNET_Serializable_Remarks(ByVal s As GeoCalcNET.Serializable)

Dim remarks As String = s.Remarks

s.Remarks = "this is a remarkable serializable"

End Sub

 

[C#]

private void GeoCalcNET_Serializable_Remarks(GeoCalcNET.Serializable s)

{

String remarks = s.Remarks;

s.Remarks = "put some remarks here";

}