SoMFStringDeleteText Method |
Convenience function to delete text from consecutive strings.
Namespace: OIV.Inventor.FieldsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public void DeleteText(
int fromLine,
int fromChar,
int toLine,
int toChar
)
Public Sub DeleteText (
fromLine As Integer,
fromChar As Integer,
toLine As Integer,
toChar As Integer
)
public:
void DeleteText(
int fromLine,
int fromChar,
int toLine,
int toChar
)
member DeleteText :
fromLine : int *
fromChar : int *
toLine : int *
toChar : int -> unit
Parameters
- fromLine
- Type: SystemInt32
- fromChar
- Type: SystemInt32
- toLine
- Type: SystemInt32
- toChar
- Type: SystemInt32
Remarks All text from the given character of one line (fromChar in fromLine) to the given character of another line (toChar in toLine), inclusive, is deleted. Any leftover text on fromLine and toLine is merged into one line.
See Also