Name Property

Type

System.String

 

Access

Get/Set

 

Description

The Name property gives the name for the Serializable object.  The Name property is used to provide a user-friendly identifier for the object.  

 

Example

[VB]

Private Sub GeoCalcNET_Serializable_Name(ByVal s As GeoCalcNET.Serializable)

Dim name As String = s.Name

s.Name = "joseph"

End Sub

 

[C#]

private void GeoCalcNET_Serializable_Name(GeoCalcNET.Serializable s)

{

String name = s.Name;

s.Name = "WGS84 Datum";

}