VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging.Office.OpenXml Namespace / OpenXmlDocumentConverter Class / ConvertRtfToDocx Methods / ConvertRtfToDocx(String,String) Method
Синтаксис Example Требования Смотрите также
В этом разделе
    ConvertRtfToDocx(String,String) Метод (OpenXmlDocumentConverter)
    В этом разделе
    Преобразует RTF документ в DOCX документ.
    Синтаксис
    'Declaration
    
    Public Overloads Shared Sub ConvertRtfToDocx( _
    ByVal rtfFilename
    Имя файла входного RTF документа.
    As System.String, _
    ByVal docxFilename
    Имя файла выходного документа DOCX.
    As System.String _
    )
    public static void ConvertRtfToDocx(
    System.String rtfFilename,
    System.String docxFilename
    )
    public: static void ConvertRtfToDocx(
    System.String rtfFilename,
    System.String docxFilename
    )
    public:
    static void ConvertRtfToDocx(
    System.String rtfFilename,
    System.String docxFilename
    )

    Parameters

    rtfFilename
    Имя файла входного RTF документа.
    docxFilename
    Имя файла выходного документа DOCX.
    Пример

    Этот C#/VB.NET код показывает, как преобразовать RTF документ в DOCX документ.

    
    Namespace ReferenceAPI.Vintasoft_Imaging
        ''' <summary>
        ''' Пример Programming-Codecs-How_To_Convert_Rtf_To_Docx.html
        ''' </summary>
        Public Class ConvertRtfToDocxExample
    
            '[BLOCK:ConvertRtfToDocx]
            ''' <summary>
            ''' Converts RTF file to a DOCX file.
            ''' </summary>
            Public Shared Sub ConvertRtfToDocx(rtfFilePath As String, docxFilePath As String)
                Vintasoft.Imaging.Office.OpenXml.OpenXmlDocumentConverter.ConvertRtfToDocx(rtfFilePath, docxFilePath)
            End Sub
            '[ENDBLOCK]
    
        End Class
    End Namespace
    
    
    
    namespace CSHARP.ReferenceAPI.Vintasoft_Imaging
    {
        /// <summary>
        /// Пример Programming-Codecs-How_To_Convert_Rtf_To_Docx.html
        /// </summary>
        public class ConvertRtfToDocxExample
        {
    
            //[BLOCK:ConvertRtfToDocx]
            /// <summary>
            /// Converts RTF document to a DOCX document.
            /// </summary>
            public static void ConvertRtfToDocx(string rtfFilePath, string docxFilePath)
            {
                Vintasoft.Imaging.Office.OpenXml.OpenXmlDocumentConverter.ConvertRtfToDocx(rtfFilePath, docxFilePath);
            }
            //[ENDBLOCK]
    
        }
    }
    
    

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также