mirror of
https://github.com/DarthAffe/ScreenCapture.NET.git
synced 2025-12-12 13:28:35 +00:00
Added missing doc-comments
This commit is contained in:
parent
5b2c83a3e1
commit
dbcf924b5b
@ -31,6 +31,9 @@ public readonly struct Display
|
||||
/// </summary>
|
||||
public int Height { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the rotation of the <see cref="Display"/>.
|
||||
/// </summary>
|
||||
public Rotation Rotation { get; }
|
||||
|
||||
/// <summary>
|
||||
@ -49,6 +52,7 @@ public readonly struct Display
|
||||
/// <param name="deviceName">The name of the <see cref="Display"/>.</param>
|
||||
/// <param name="width">The with of the <see cref="Display"/>.</param>
|
||||
/// <param name="height">The height of the <see cref="Display"/>.</param>
|
||||
/// <param name="rotation">The rotation of the <see cref="Display"/>.</param>
|
||||
/// <param name="graphicsCard">The <see cref="GraphicsCard"/> this <see cref="Display"/> is connected to.</param>
|
||||
public Display(int index, string deviceName, int width, int height, Rotation rotation, GraphicsCard graphicsCard)
|
||||
{
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
namespace ScreenCapture.NET;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a display-rotation.
|
||||
/// </summary>
|
||||
public enum Rotation
|
||||
{
|
||||
None = 0,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user