Provides access to members that control the properties of a vertical datum.
When To Use
Use IVerticalDatumEdit to define a custom vertical datum. You would then use IVerticalCoordinateSystemEdit to define a custom vertical coordinate system.
Members
Name | Description | |
---|---|---|
Define | Defines the properties of a vertical datum. | |
DefineEx | Defines the properties of a vertical datum. |
IVerticalDatumEdit.Define Method
Defines the properties of a vertical datum.
Public Sub Define ( _
[ByRef Name As Object], _
[ByRef Alias As Object], _
[ByRef Abbreviation As Object], _
[ByRef Remarks As Object] _
)
public void Define (
ref object Name,
ref object Alias,
ref object Abbreviation,
ref object Remarks
);
private IVerticalDatum DefineVerticalDatum()
{
//Define a new vertical datum Dim pVerticalDatum As IVerticalDatum
IVerticalDatumEdit verticalDatumEdit = new VerticalDatumClass();
object name = "New VDatum";
object alias = "VDatum alias";
object abbreviation = "abbr";
object remarks = "Test for options";
verticalDatumEdit.Define(ref name,
ref alias,
ref abbreviation,
ref remarks);
IVerticalDatum verticalDatum = verticalDatumEdit as IVerticalDatum;
return verticalDatum;
}
IVerticalDatumEdit.DefineEx Method
Defines the properties of a vertical datum.
Public Sub DefineEx ( _
ByVal Name As String, _
ByVal Alias As String, _
ByVal Abbreviation As String, _
ByVal Remarks As String _
)
public void DefineEx (
string Name,
string Alias,
string Abbreviation,
string Remarks
);
Classes that implement IVerticalDatumEdit
Classes | Description |
---|---|
VerticalDatum | Creates a vertical datum. |