Skip to content

Commit

Permalink
add doc comments explaining DxfLineWeight
Browse files Browse the repository at this point in the history
  • Loading branch information
brettfo committed Nov 23, 2019
1 parent 3cafee7 commit 3f9542e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/IxMilia.Dxf/DxfLineWeight.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ public enum DxfLineWeightType : short

public class DxfLineWeight
{
/// <summary>
/// A non-zero value indicates 1/100th of a mm.
/// </summary>
public short Value { get; set; }

/// <summary>
/// When the line weight type is <see cref="DxfLineWeightType.Custom" />, the <see cref="Value" /> property represents the width of the line in 1/100th mm increments.
/// </summary>
public DxfLineWeightType LineWeightType
{
get
Expand Down

0 comments on commit 3f9542e

Please # to comment.