Skip to content

Commit

Permalink
Group all Behaviour into Behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetsait committed May 5, 2024
1 parent 9575dd3 commit 6f9c282
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Scintilla.NET/Scintilla.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3274,11 +3274,11 @@ public unsafe void ClearRepresentation(string encodedString)
#region Properties

/// <summary>
/// Gets or sets whether Scintilla's native drag & drop should be used instead of WinForms based one.
/// Gets or sets whether Scintilla's native drag &amp; drop should be used instead of WinForms based one.
/// </summary>
/// <value><c>true</c> if Scintilla's native drag & drop should be used; otherwise, <c>false</c>. The default is false.</value>
/// <value><c>true</c> if Scintilla's native drag &amp; drop should be used; otherwise, <c>false</c>. The default is false.</value>
[DefaultValue(false)]
[Category("Behaviour")]
[Category("Behavior")]
[Description("Indicates whether Scintilla's native drag & drop should be used instead of WinForms based one.")]
public bool _ScintillaManagedDragDrop { get; set; }
// Underscore is used so that WinForms Designer sets it before any other
Expand All @@ -3291,7 +3291,7 @@ public unsafe void ClearRepresentation(string encodedString)
/// </summary>
/// <value>The bi-directionality of the Scintilla control.</value>
[DefaultValue(BiDirectionalDisplayType.Disabled)]
[Category("Behaviour")]
[Category("Behavior")]
[Description("The bi-directionality of the Scintilla control.")]
public BiDirectionalDisplayType BiDirectionality
{
Expand All @@ -3317,7 +3317,7 @@ public BiDirectionalDisplayType BiDirectionality
/// </summary>
/// <value><c>true</c> if reading layout is from right to left; otherwise, <c>false</c>.</value>
[DefaultValue(false)]
[Category("Behaviour")]
[Category("Behavior")]
[Description("A value indicating whether the reading layout is from right to left.")]
public bool UseRightToLeftReadingLayout
{
Expand Down

0 comments on commit 6f9c282

Please sign in to comment.