From a6321993ee35a873e40aa48848ecd0e893429c78 Mon Sep 17 00:00:00 2001 From: Thomas Claudius Huber Date: Tue, 4 Aug 2020 00:32:40 +0200 Subject: [PATCH] Update Window_and_Application_API_Spec.md (#72) * Update Window_and_Application_API_Spec.md I don't know what the property should be called there, but definitely not Visible. :-) * Update Window_and_Application_API_Spec.md Change WindowSize to just Size --- active/Win32/Window_and_Application_API_Spec.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/active/Win32/Window_and_Application_API_Spec.md b/active/Win32/Window_and_Application_API_Spec.md index 876f649be..f78817980 100644 --- a/active/Win32/Window_and_Application_API_Spec.md +++ b/active/Win32/Window_and_Application_API_Spec.md @@ -482,9 +482,9 @@ Contains the argument returned by a window size change event. public bool Handled { get; set; }; ``` -- WindowSizeChangedEventArgs.Visible: Gets the new size of the window in units of effective (view) pixels. +- WindowSizeChangedEventArgs.Size: Gets the new size of the window in units of effective (view) pixels. ```CS - public Size Visible { get; } + public Size Size { get; } ```