예제 #1
0
 public ExecuteResult(bool selectAfterDrop, int selectionWidthInChars, int selectionHeightInLines, DropActionResultEnum dropActionResultEnum)
 {
     SelectAfterDrop = selectAfterDrop;
     SelectionWidthInChars = selectionWidthInChars;
     SelectionHeightInLines = selectionHeightInLines;
     DropActionResultEnum = dropActionResultEnum;
 }
예제 #2
0
 public ExecuteResult(bool selectAfterDrop, int selectionWidthInChars, int selectionHeightInLines, DropActionResultEnum dropActionResultEnum, int selectionStartInChars, int selectionStartLine)
     : this(selectAfterDrop, selectionWidthInChars, selectionHeightInLines, dropActionResultEnum)
 {
     SelectionStartInChars = selectionStartInChars;
     SelectionStartLine = selectionStartLine;
 }