EditPoint2.InsertFromFile(String) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Вставляет содержимое указанного файла в текущее расположение в буфере.
public:
void InsertFromFile(System::String ^ File);
public:
void InsertFromFile(Platform::String ^ File);
void InsertFromFile(std::wstring const & File);
[System.Runtime.InteropServices.DispId(133)]
public void InsertFromFile (string File);
[<System.Runtime.InteropServices.DispId(133)>]
abstract member InsertFromFile : string -> unit
Public Sub InsertFromFile (File As String)
Параметры
- File
- String
Обязательный. Имя файла, содержимое которого вставляется в текстовый буфер.
Реализации
- Атрибуты
Примеры
Sub InsertFromFileExample(ByVal dte As DTE2)
' NOTE: This example requires a reference to the
' System.IO namespace.
' Create a new text file and insert ten lines of text.
dte.ItemOperations.NewFile(, "File1")
Dim doc As Document = dte.ActiveDocument
Dim sel As TextSelection = CType(doc.Selection, TextSelection)
Dim i As Integer
For i = 1 To 10
sel.Insert("This is a test." & vbCrLf)
Next i
MsgBox("Saving and closing File1")
' Save and close the text file.
Dim file1 As String = Path.GetTempPath & "File1.txt"
doc.Save(file1)
doc.Close()
' Create a new text file.
dte.ItemOperations.NewFile(, "File2")
doc = dte.ActiveDocument
If MsgBox("Insert text from File1 into File2?", _
MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
sel = CType(doc.Selection, TextSelection)
sel.InsertFromFile(file1)
End If
End Sub
public void InsertFromFileExample(DTE2 dte)
{
// NOTE: This example requires a reference to the
// System.IO namespace.
// Create a new text file and insert ten lines of text.
dte.ItemOperations.NewFile(@"General\Text File", "File1",
Constants.vsViewKindPrimary);
Document doc = dte.ActiveDocument;
TextSelection sel = (TextSelection)doc.Selection;
for (int i = 0; i < 10; ++i)
sel.Insert("This is a test.\n",
(int)vsInsertFlags.vsInsertFlagsCollapseToEnd);
MessageBox.Show("Saving and closing File1");
// Save and close the text file.
string file1 = Path.GetTempPath() + "File1.txt";
doc.Save(file1);
doc.Close(vsSaveChanges.vsSaveChangesNo);
// Create a new text file.
dte.ItemOperations.NewFile(@"General\Text File", "File2",
Constants.vsViewKindPrimary);
doc = dte.ActiveDocument;
if (MessageBox.Show("Insert text from File1 into File2?", "",
MessageBoxButtons.YesNo) == DialogResult.Yes)
{
sel = (TextSelection)doc.Selection;
sel.InsertFromFile(file1);
}
}
Комментарии
Точка редактирования перемещается за точкой вставки. Текст преобразуется в формат Юникод, который является внутренним представлением, используемым в текстовых документах.