humanemulator.net — справка.
Продукт, демо и покупка — на
хуманэмулятор.рф
|
Демо
|
Купить
|
API
|
Changelog
get_page_break_text_blocks_count_odt
get_page_break_text_blocks_count_odt($file_path,$timeout=300); - Получить количество блоков строк в odt файле типа `page-break`Функция на вход принимает параметры:
После выполнения функции возвращаемое значение будет равно одному из двух :
Пример использования
<?php // Scenario: Count page break text blocks in an ODT document $xhe_host = getenv("RPABOT_HOST_URL"); // подключим функциональные объекты, если еще не подключен if (!isset($path)){ // Path to the init.php file for connecting to the XHE API $path = "../../../Templates/init.php"; // Including init.php grants access to all classes and functionality for working with the XHE API require($path); } echo "\n<span >libreOffice->".basename (__FILE__)."</span>\n"; // Example 1: Count page break text blocks in a document echo "\n\nExample 1: Counting page break text blocks in a document\n"; $filePath = "test/test_style.odt"; $pageBreakCount = SYSTEM::$libreOffice->get_page_break_text_blocks_count_odt($filePath); if ($pageBreakCount >= 0) { echo "The ODT file contains $pageBreakCount page break text blocks.\n"; } else { echo "Error: Failed to count page break text blocks in the ODT file.\n"; } // Quit the application WINDOW::$app->quit(); ?>
# Example for get_page_break_text_blocks_count_odt function # # This example demonstrates how to count the number of page break text blocks in an ODT file # using the XHELibreOffice class. import sys sys.path.insert(0, '../../../Templates PY/') xhe_host = "127.0.0.1:7013" from xweb_human_emulator import * # начало echo("<hr><font color=blue>libreOffice->get_page_break_text_block_by_index_odt</font><hr>") # Example 1: Count page break text blocks in a document echo("Example 1: Counting page break text blocks in a document\n") filePath = "test/test_style.odt" pageBreakCount = libreOffice.get_page_break_text_blocks_count_odt(filePath) pageBreakCount = int(pageBreakCount) if pageBreakCount >= 0: echo(f"The ODT file contains {pageBreakCount} page break text blocks.\n") else: echo(f"Error: Failed to count page break text blocks in the ODT file.\n") # Quit app.quit()
using System; /** * Example for get_page_break_text_blocks_count_odt function * * This example demonstrates how to count the number of page break text blocks in an ODT file * using the XHELibreOffice class. */ // Scenario: Count page break text blocks in an ODT document namespace XHELibreOfficeExamples { class GetPageBreakTextBlocksCountOdtExample { static void Main(string[] args) { string xheHost = "127.0.0.1:7010"; // Initialize XHE API connection // In C#, you would initialize the XHE API client here // This is equivalent to including init.php in PHP Console.WriteLine("\nlibreOffice->get_page_break_text_blocks_count_odt.cs"); // Example 1: Count page break text blocks in a document Console.WriteLine("\n\nExample 1: Counting page break text blocks in a document"); string filePath = "test/test_style.odt"; int pageBreakCount = SYSTEM.libreOffice.get_page_break_text_blocks_count_odt(filePath); if (pageBreakCount >= 0) { Console.WriteLine($"The ODT file contains {pageBreakCount} page break text blocks."); } else { Console.WriteLine("Error: Failed to count page break text blocks in the ODT file."); } // Quit the application WINDOW.app.quit(); } } }
/** * Example for get_page_break_text_blocks_count_odt function * * This example demonstrates how to count the number of page break text blocks in an ODT file * using the XHELibreOffice class. */ xhe_host = "127.0.0.1:7013"; // подключим функциональные объекты, если еще не подключен require("../../../Templates JS/init.js"); // начало echo("<hr><font color=blue>libreOffice.get_page_break_text_blocks_count_odt</font><hr>"); // Example 1: Count page break text blocks in a document echo("Example 1: Counting page break text blocks in a document\n"); const filePath = "test/test_style.odt"; const pageBreakCount = libreOffice.get_page_break_text_blocks_count_odt(filePath); if (pageBreakCount >= 0) { echo("The ODT file contains " + pageBreakCount + " page break text blocks.\n"); } else { echo("Error: Failed to count page break text blocks in the ODT file.\n"); } // Quit app.quit();
=============================================
libreoffice Объекты DOM System Vision Web Window
=============================================
если что-то непонятно или необходимо узнать или считаете что надо добавить по работе этой функции, пишите в комментарии или на наш форум
.