You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: english/cpp/aspose.pdf.text/fontrepository/_index.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,16 +20,16 @@ class FontRepository : public System::Object
20
20
21
21
| Method | Description |
22
22
| --- | --- |
23
-
| static [FindFont](./findfont/)(System::String) | Searches and returns font with specified font name. |
24
-
| static [FindFont](./findfont/)(System::String, bool) | Searches and returns font with specified font name ignoring or honoring case sensitivity. |
25
-
| static [FindFont](./findfont/)(System::String, FontStyles) | Searches and returns font with specified font name and font style. |
26
-
| static [FindFont](./findfont/)(System::String, FontStyles, bool) | Searches and returns font with specified font name and font style ignoring or honoring case sensitivity. |
23
+
| static [FindFont](./findfont/)(const System::String\&) | Searches and returns font with specified font name. |
24
+
| static [FindFont](./findfont/)(const System::String\&, bool) | Searches and returns font with specified font name ignoring or honoring case sensitivity. |
25
+
| static [FindFont](./findfont/)(const System::String\&, FontStyles) | Searches and returns font with specified font name and font style. |
26
+
| static [FindFont](./findfont/)(const System::String\&, FontStyles, bool) | Searches and returns font with specified font name and font style ignoring or honoring case sensitivity. |
27
27
| static [get_Sources](./get_sources/)() | Gets font sources collection. |
28
28
| static [get_Substitutions](./get_substitutions/)() | Gets font substitution strategies collection. |
29
29
| static [LoadFonts](./loadfonts/)() | Loads system installed fonts and standard [Pdf](../../aspose.pdf/) fonts. This method was designed to speed up font loading process. By default fonts are loaded on first request for any font. Use of this method loads system and standard [Pdf](../../aspose.pdf/) fonts immediately before any [Pdf](../../aspose.pdf/) document was open. |
30
-
| static [OpenFont](./openfont/)(System::SharedPtr\<System::IO::Stream\>, FontTypes) | Opens font with specified font stream. |
31
-
| static [OpenFont](./openfont/)(System::String) | Opens font with specified font file path. |
32
-
| static [OpenFont](./openfont/)(System::String, System::String) | Opens font with specified font file path and metrics file path. |
30
+
| static [OpenFont](./openfont/)(const System::SharedPtr\<System::IO::Stream\>\&, const FontTypes\&) | Opens font with specified font stream. |
31
+
| static [OpenFont](./openfont/)(const System::String\&) | Opens font with specified font file path. |
32
+
| static [OpenFont](./openfont/)(const System::String\&, const System::String\&) | Opens font with specified font file path and metrics file path. |
33
33
| static [ReloadFonts](./reloadfonts/)() | Reloads all fonts specified by property [Sources](../) |
Copy file name to clipboardExpand all lines: english/cpp/aspose.pdf.text/textfragment/_index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,9 +50,9 @@ class TextFragment : public Aspose::Pdf::BaseParagraph
50
50
| [set_VerticalAlignment](./set_verticalalignment/)(Aspose::Pdf::VerticalAlignment) override | Sets a vertical alignment of text fragment. |
51
51
| [set_WrapLinesCount](./set_wraplinescount/)(int32_t) | Sets wrap lines count for this paragraph(for pdf generation only) |
52
52
| [TextFragment](./textfragment/)() | Initializes new instance of the [TextFragment](./) object. |
53
-
| [TextFragment](./textfragment/)(System::SharedPtr\<TabStops\>) | Initializes new instance of the [TextFragment](./) object with predefined [TabStops](../tabstops/) positions. |
54
-
| [TextFragment](./textfragment/)(System::String) | Creates [TextFragment](./) object with single [TextSegment](../textsegment/) object inside. Specifies text string inside the segment. |
55
-
| [TextFragment](./textfragment/)(System::String, System::SharedPtr\<TabStops\>) | Creates [TextFragment](./) object with single [TextSegment](../textsegment/) object inside and predefined [TabStops](../tabstops/) positions. |
53
+
| [TextFragment](./textfragment/)(const System::SharedPtr\<TabStops\>\&) | Initializes new instance of the [TextFragment](./) object with predefined [TabStops](../tabstops/) positions. |
54
+
| [TextFragment](./textfragment/)(const System::String\&) | Creates [TextFragment](./) object with single [TextSegment](../textsegment/) object inside. Specifies text string inside the segment. |
55
+
| [TextFragment](./textfragment/)(const System::String\&, const System::SharedPtr\<TabStops\>\&) | Creates [TextFragment](./) object with single [TextSegment](../textsegment/) object inside and predefined [TabStops](../tabstops/) positions. |
Copy file name to clipboardExpand all lines: english/cpp/aspose.pdf/pagecollection/_index.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,13 +28,15 @@ class PageCollection : public System::Collections::Generic::ICollection<System::
28
28
| [Add](./add/)() | Adds an empty page. If the document already contains pages with varying sizes, the size of the most frequently occurring page will be selected. In the case there are only two different pages, the size of the first page will be used. |
29
29
| [Add](./add/)(const System::SharedPtr\<System::Collections::Generic::ICollection\<System::SharedPtr\<Page\>\>\>\&) | Adds to collection all pages from list. |
30
30
| [Add](./add/)(const System::ArrayPtr\<System::SharedPtr\<Page\>\>\&) | Adds to collection all pages from array. |
31
+
| [BeginUpdate](./beginupdate/)() | Updates when group changes begin. Stops page cache recalculation on each operation. We recommend calling the BeginUpdate/EndUpdate methods in a try-finally block. |
| [Delete](./delete/)() | Deletes all pages from collection. |
37
38
| [Delete](./delete/)(System::ArrayPtr\<int32_t\>) | Delete pages specified which numbers are specified in array. |
39
+
| [EndUpdate](./endupdate/)() | Updates when group changes are complete. Restores page cache recalculations on each operation. We recommend calling the BeginUpdate/EndUpdate methods in a try-finally block. |
38
40
| [Flatten](./flatten/)() | Removes all fields located on the pages and place their values instead. |
description: 'Aspose::Pdf::PageCollection::BeginUpdate method. Updates when group changes begin. Stops page cache recalculation on each operation. We recommend calling the BeginUpdate/EndUpdate methods in a try-finally block in C++.'
6
+
type: docs
7
+
weight: 300
8
+
url: /cpp/aspose.pdf/pagecollection/beginupdate/
9
+
---
10
+
## PageCollection::BeginUpdate method
11
+
12
+
13
+
Updates when group changes begin. Stops page cache recalculation on each operation. We recommend calling the BeginUpdate/EndUpdate methods in a try-finally block.
0 commit comments