Commit 951aafa6 authored by GoshaZotov's avatar GoshaZotov

SpecialPasteProps->change asc_setProps

parent 933ff848
...@@ -138,7 +138,11 @@ ...@@ -138,7 +138,11 @@
{ {
switch(props) switch(props)
{ {
case c_oSpecialPasteProps.formulas: case c_oSpecialPasteProps.paste:
{
break;
}
case c_oSpecialPasteProps.pasteOnlyFormula:
{ {
//только формулы(или значения) //только формулы(или значения)
this.revert(); this.revert();
...@@ -147,7 +151,7 @@ ...@@ -147,7 +151,7 @@
break; break;
} }
case c_oSpecialPasteProps.formulasNumberFormating: case c_oSpecialPasteProps.formulaNumberFormat:
{ {
//только формулы(или значения) и числовой формат //только формулы(или значения) и числовой формат
this.revert(); this.revert();
...@@ -157,54 +161,56 @@ ...@@ -157,54 +161,56 @@
break; break;
} }
case c_oSpecialPasteProps.keepSourceFormating: case c_oSpecialPasteProps.formulaAllFormatting:
{ {
//формулы и формат //формулы и формат
break; break;
} }
case c_oSpecialPasteProps.noBorders: case c_oSpecialPasteProps.formulaWithoutBorders:
{ {
//всё кроме бордеров //всё кроме бордеров
this.borders = null; this.borders = null;
break; break;
} }
case c_oSpecialPasteProps.keepSourceColumnWidths: case c_oSpecialPasteProps.formulaColumnWidth:
{ {
break; break;
} }
case c_oSpecialPasteProps.transpose: case c_oSpecialPasteProps.mergeConditionalFormating:
{ {
break; break;
} }
case c_oSpecialPasteProps.pasteOnlyValues:
case c_oSpecialPasteProps.values:
{ {
//только значения(вместо формул также вставляются значения) //только значения(вместо формул также вставляются значения)
this.revert(); this.revert();
this.val = true; this.val = true;
} }
case c_oSpecialPasteProps.valuesNumberFormating: case c_oSpecialPasteProps.valueNumberFormat:
{ {
this.revert(); this.revert();
this.val = true; this.val = true;
this.numFormat = true; this.numFormat = true;
break; break;
} }
case c_oSpecialPasteProps.keepSourceFormating: case c_oSpecialPasteProps.valueAllFormating:
{ {
//все кроме формул //все кроме формул
this.formula = null; this.formula = null;
break; break;
} }
case c_oSpecialPasteProps.pasteOnlyFormating:
case c_oSpecialPasteProps.formating:
{ {
this.formula = null; this.formula = null;
this.val = null; this.val = null;
break; break;
} }
case c_oSpecialPasteProps.pasteLink: case c_oSpecialPasteProps.transpose:
{
break;
}
case c_oSpecialPasteProps.link:
{ {
this.revert(); this.revert();
break; break;
...@@ -217,7 +223,14 @@ ...@@ -217,7 +223,14 @@
{ {
break; break;
} }
case c_oSpecialPasteProps.sourceformatting:
{
break;
}
case c_oSpecialPasteProps.destinationFormatting:
{
break;
}
} }
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment