mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Added initial code for rotating
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1676 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
70103d745f
commit
aeb7e5d78e
2 changed files with 38 additions and 0 deletions
|
@ -52,6 +52,14 @@ namespace Greenshot.Drawing {
|
|||
}
|
||||
}
|
||||
|
||||
public List<IDrawableContainer> AsIDrawableContainerList() {
|
||||
List<IDrawableContainer> interfaceList = new List<IDrawableContainer>();
|
||||
foreach(IDrawableContainer container in this) {
|
||||
interfaceList.Add(container);
|
||||
}
|
||||
return interfaceList;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the selection status of the elements.
|
||||
/// If several elements are in the list, true is only returned when all elements are selected.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue