-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add documentation for WPF's System.Windows.Media.PenDashCap enum and System.Windows.Media.IAnimation interface #3018
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
<BaseTypeName>System.Enum</BaseTypeName> | ||
</Base> | ||
<Docs> | ||
<summary>To be added.</summary> | ||
<summary>Describes the shape at the end of each dash segment.</summary> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor nitpick here: both ends of each dash are affected by the cap setting. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Which cap setting are you referring to? Should this information be included as a remark somewhere within this file? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PenDashCap (this enum) is the shape (the line cap) at the ends of each dash segment. If that doesn't seem clear, 'line cap' can be added to the main description:
|
||
<remarks>To be added.</remarks> | ||
</Docs> | ||
<Members> | ||
|
@@ -34,7 +34,7 @@ | |
</ReturnValue> | ||
<MemberValue>0</MemberValue> | ||
<Docs> | ||
<summary>To be added.</summary> | ||
<summary>A cap that does not extend past the last point of the line. It is comparable to no line cap.</summary> | ||
</Docs> | ||
</Member> | ||
<Member MemberName="Round"> | ||
|
@@ -54,7 +54,7 @@ | |
</ReturnValue> | ||
<MemberValue>2</MemberValue> | ||
<Docs> | ||
<summary>To be added.</summary> | ||
<summary>A semicircle that has a diameter equal to the line thickness.</summary> | ||
</Docs> | ||
</Member> | ||
<Member MemberName="Triangle"> | ||
|
@@ -74,8 +74,9 @@ | |
</ReturnValue> | ||
<MemberValue>3</MemberValue> | ||
<Docs> | ||
<summary>To be added.</summary> | ||
<summary>An isosceles right triangle whose base length is equal to the thickness of the line.</summary> | ||
</Docs> | ||
</Member> | ||
</Members> | ||
</Type> | ||
|
Uh oh!
There was an error while loading. Please reload this page.