mirror of
https://github.com/greenshot/greenshot
synced 2025-08-21 22:13:23 -07:00
Updated documentation style in Win10Configuration.cs
This commit updates the comment style in the Win10Configuration.cs file to use XML comments, enhancing readability and providing better IntelliSense support in IDEs. The changes include: Class and property comments have been updated to use XML documentation syntax, providing a more detailed and consistent documentation style. Here's an example of the changes: ``` /// <summary> /// Gets or sets a value indicating whether OCR should be run automatically on every capture. /// </summary> ``` This change is purely cosmetic and does not affect the functionality of the code.
This commit is contained in:
parent
92528efaf5
commit
e9b32c0f0e
1 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,10 @@ namespace Greenshot.Plugin.Win10
|
||||||
[IniSection("Win10", Description = "Greenshot Win10 Plugin configuration")]
|
[IniSection("Win10", Description = "Greenshot Win10 Plugin configuration")]
|
||||||
public class Win10Configuration : IniSection
|
public class Win10Configuration : IniSection
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets a value indicating whether OCR should be run automatically on every capture.
|
||||||
|
/// </summary>
|
||||||
[IniProperty("AlwaysRunOCROnCapture", Description = "Determines if OCR is run automatically on every capture", DefaultValue = "False")]
|
[IniProperty("AlwaysRunOCROnCapture", Description = "Determines if OCR is run automatically on every capture", DefaultValue = "False")]
|
||||||
public bool AlwaysRunOCROnCapture { get; set; }
|
public bool AlwaysRunOCROnCapture { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue