 | CDU.SplitLine2 Method |
Splits a line a the fiducial and copies any data past
that fiducial into the new line.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void SplitLine2(
CDB db,
int i_line,
int o_line,
double fid,
int reset_fi_ds
)
public static void SplitLine2(
CDB db,
int i_line,
int o_line,
double fid,
int reset_fi_ds
)
Public Shared Sub SplitLine2 (
db As CDB,
i_line As Integer,
o_line As Integer,
fid As Double,
reset_fi_ds As Integer
)
Public Shared Sub SplitLine2 (
db As CDB,
i_line As Integer,
o_line As Integer,
fid As Double,
reset_fi_ds As Integer
)
public:
static void SplitLine2(
CDB^ db,
int i_line,
int o_line,
double fid,
int reset_fi_ds
)
public:
static void SplitLine2(
CDB^ db,
int i_line,
int o_line,
double fid,
int reset_fi_ds
)
static member SplitLine2 :
db : CDB *
i_line : int *
o_line : int *
fid : float *
reset_fi_ds : int -> unit
static member SplitLine2 :
db : CDB *
i_line : int *
o_line : int *
fid : float *
reset_fi_ds : int -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNet.CDB
Database - i_line
- Type: System.Int32
Input Line, will be reduced at fid [<define>DB_LOCK_READWRITE</define>] - o_line
- Type: System.Int32
Output Line, will take data above fid [<define>DB_LOCK_READWRITE</define>] - fid
- Type: System.Double
Fid number of split - reset_fi_ds
- Type: System.Int32
Reset starting fiducials to zero (0: No, 1: Yes)
RemarksThe same as SplitLine, but with an option to reset each line's starting fiducial to zero.
See Also