Skip to content
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b0f050f
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Mar 21, 2025
a64b4bc
touching publish.yml
tig Mar 21, 2025
320384e
Merge branch 'v2_release' into v2_develop
tig Mar 21, 2025
4048436
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Mar 29, 2025
3b0311d
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Mar 29, 2025
ae79c48
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Mar 30, 2025
1c39896
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 1, 2025
2cee67f
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 1, 2025
9560cf3
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 2, 2025
0795dd1
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 2, 2025
4baccd7
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 3, 2025
7d7ffad
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 5, 2025
c37210a
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 5, 2025
680e5ae
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 16, 2025
3cba0a5
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 23, 2025
9bbec08
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 24, 2025
64403fa
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 24, 2025
5e1251c
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 24, 2025
49cd335
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 25, 2025
9a8e4e3
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 25, 2025
ef6d193
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 25, 2025
4c0c504
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 25, 2025
4f5fca2
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 28, 2025
f8bfab8
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Apr 28, 2025
898c2de
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Apr 28, 2025
cd10bb3
Merge branch 'gui-cs:v2_develop' into v2_develop
tig May 7, 2025
d412c00
Merge branch 'gui-cs:v2_develop' into v2_develop
tig May 9, 2025
66f2c62
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig May 11, 2025
abfa66a
Merge branch 'gui-cs:v2_develop' into v2_develop
tig May 11, 2025
d9dcca4
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig May 11, 2025
c533822
Merge branch 'gui-cs:v2_develop' into v2_develop
tig May 12, 2025
924112e
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig May 12, 2025
d14c49a
Merge branch 'gui-cs:v2_develop' into v2_develop
tig May 12, 2025
2d65dde
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig May 14, 2025
b6226d8
Merge branch 'gui-cs:v2_develop' into v2_develop
tig May 14, 2025
3c4aff9
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig May 14, 2025
a59690b
Fixed api docs again
tig May 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 9 additions & 15 deletions Terminal.Gui/View/View.Content.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,22 @@ public partial class View
/// </summary>
/// <remarks>
/// <para>
/// See the View Layout Deep Dive for more information: <see href="https://gui-cs.github.io/Terminal.GuiV2Docs/docs/layout.html"/>
/// See the View Layout Deep Dive for more information:
/// <see href="https://gui-cs.github.io/Terminal.GuiV2Docs/docs/layout.html"/>
/// </para>
/// <para>
/// Negative sizes are not supported.
/// </para>
/// <para>
/// If not explicitly set, and the View has no visible subviews, <see cref="GetContentSize ()"/> will return the
/// size of
/// <see cref="Viewport"/>.
/// </para>
/// <para>
/// If not explicitly set, and the View has visible subviews, <see cref="GetContentSize ()"/> will return the
/// maximum
/// position + dimension of the SubViews, supporting <see cref="Dim.Auto"/> with the
/// <see cref="DimAutoStyle.Content"/> flag set.
/// If not explicitly set to a non-<see langword="null"/> value, and the View has Subviews,
/// <see cref="GetContentSize ()"/> will return
/// the size of the <see cref="Viewport"/>.
/// </para>
/// <para>
/// If set <see cref="Viewport"/> describes the portion of the content currently visible to the user. This enables
/// virtual scrolling.
/// </para>
/// <para>
/// If set the behavior of <see cref="DimAutoStyle.Content"/> will be to use the ContentSize to determine the size
/// If set to a non-<see langword="null"/> value, <see cref="Viewport"/> describes the portion of the content
/// currently visible to the user. This enables
/// virtual scrolling and the behavior of <see cref="DimAutoStyle.Content"/> will be to use
/// <see cref="GetContentSize ()"/> to determine the size
/// of the view.
/// </para>
/// </remarks>
Expand Down
Loading