-
-
Notifications
You must be signed in to change notification settings - Fork 122
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
Implementation of MULTILEADER and MULTILEADERSTYLE #169
Merged
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
43614d7
Implement Multileader
4d25097
Merge pull request #5 from mme1950/20230915_mme_Multileader
nka1994 15b59ba
Update Multileader Summary and DwgMergedReader Advance Method
b93c5b4
Update from Original Repository
24b4f8f
Draw Multileader to sample_AC1032.dwg
1e827f7
Improve Clone Function for Multileader
24fc426
Styles do not need to be cloned
06f7112
- some refactoring
1bd0fe8
Change Arrowhead Data Type for BlockRecord
68d8ed0
Replace BlockRecord with ContentsBlock
318a9f6
Add SubclassMarker for Multileader
ec01a04
Add SubclassMarker for MLeaderStyle
ca176e4
Add Constructor for MultiLeaderStyle
0f36506
Add Constructor for MultiLeaderAnnotContext and Clone BlockAttributes…
99e190f
Implement Missing Clone Methods
d14b04e
Merge branch 'master' into master
nka1994 38987f9
Improve MultiLeader
5d48490
Correct After Review
b729831
Merge branch 'master' into master
nka1994 8e1a0e6
Corrections
8c2b328
Fix MultiLeader Clone
b1ded16
Add MultiLeader Sample DWG
b6c5987
Implement Asserts for MultiLeader
ac6fa2d
Corrections
759b778
Fix Color Tests and Add MultiLeader to Ignore List
9a63d0b
Update Comments
b3f82d2
- comments improved
50f57b6
Baseline Merge, Comments Improved
e60a94a
Fix DwgObjectReader
f5fb8e0
Update MultiLeader.cs
DomCR File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -320,10 +320,6 @@ public override CadObject Clone() | |
{ | ||
MultiLeader clone = (MultiLeader)base.Clone(); | ||
|
||
clone.Style = (MultiLeaderStyle)this.Style?.Clone(); | ||
clone.LineType = (LineType)this.LineType?.Clone(); | ||
clone.TextStyle = (TextStyle)this.TextStyle?.Clone(); | ||
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. This should be cloned, otherwise the styles won't be detached form the document. |
||
|
||
return clone; | ||
} | ||
} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are elements in this object that need to be cloned separately, for an example you can check how the type
Entity
handles the cloning method.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK