[]
Spread.Formatter.FormatterBase
• new FormatterBase(format
, cultureName
)
指定された書式文字列を持つカスタムフォーマッターを表します。
名前 | 型 | 説明 |
---|---|---|
format |
string |
書式。 |
cultureName |
string |
カルチャ名。 |
• typeName: string
シリアル化のサポートに使用される型名の文字列を表します。
実例
// 次のサンプルコードは、カスタムフォーマッターを作成します。
function MyFormatter(format, cultureName) {
GC.Spread.Formatter.FormatterBase.apply(this, arguments);
this.typeName = "MyFormatter";
this.formatter = format;
}
MyFormatter.prototype = new GC.Spread.Formatter.FormatterBase();
MyFormatter.prototype.format = function (obj, options) {
if (typeof obj === "number") {
var colors = this.formatter.split(";");
if (obj >= 0) {
options && options.conditionalForeColor = colors[0];
return "PositiveOrZero: " + obj;
} else {
options && options.conditionalForeColor = colors[1];
return "Negative: " + obj;
}
}
return obj ? obj.toString() : "";
};
MyFormatter.prototype.parse = function (str) {
var index = str.indexOf(": ");
if (index >= 0) {
return +str.substr(index + 2);
} else {
return +str;
}
};
MyFormatter.prototype.toJSON = function () {
return {
typeName: this.typeName,
formatter: this.formatter
};
};
MyFormatter.prototype.fromJSON = function (settings) {
if (settings) {
this.formatter = settings.formatter;
}
};
var formatter = new MyFormatter("red;green");
formatter.format(12345); // "PositiveOrZero: 12345"
formatter.parse("PositiveOrZero: 12345"); // 12345
▸ format(obj
, options?
): string
条件付き書式の色を使用して、指定したオブジェクトを文字列として書式設定します。この関数は上書きする必要があります。
実例
// 次のサンプルコードは、カスタムフォーマッターを作成します。
function CustomFormatterTest() {
}
CustomFormatterTest.prototype = new GC.Spread.Formatter.FormatterBase();
CustomFormatterTest.prototype.format = function (obj, options) {
\xa0 \xa0 //オブジェクトが色文字列の場合、exp: red、blue。テキストはオブジェクトの色で描画されます。
\xa0 \xa0 if (obj) {
\xa0 \xa0 \xa0 \xa0 options.conditionalForeColor = obj.toString()
\xa0 \xa0 \xa0 \xa0 return "My format result : " + obj.toString();
\xa0 \xa0 }
\xa0 \xa0 return "";
};
CustomFormatterTest.prototype.parse = function (str) {
\xa0 \xa0 if (!str) {
\xa0 \xa0 \xa0 \xa0 return "";
\xa0 \xa0 }
\xa0 \xa0 return str;
}
var sheet = spread.getActiveSheet();
sheet.getCell(1, 0).formatter(new CustomFormatterTest());
sheet.getCell(1, 0).value("red");
名前 | 型 | 説明 |
---|---|---|
obj |
Object |
書式設定するセルデータを含むオブジェクト。 |
options? |
Object |
- |
string
書式設定された文字列。
▸ fromJSON(settings
): void
指定したJSON文字列からオブジェクト状態をロードします。
実例
// 次のサンプルコードは、カスタムフォーマッターを作成します。
function MyFormatter(format, cultureName) {
GC.Spread.Formatter.FormatterBase.apply(this, arguments);
this.typeName = "MyFormatter";
this.formatter = format;
}
MyFormatter.prototype = new GC.Spread.Formatter.FormatterBase();
MyFormatter.prototype.format = function (obj, options) {
if (typeof obj === "number") {
var colors = this.formatter.split(";");
if (obj >= 0) {
options && options.conditionalForeColor = colors[0];
return "PositiveOrZero: " + obj;
} else {
options && options.conditionalForeColor = colors[1];
return "Negative: " + obj;
}
}
return obj ? obj.toString() : "";
};
MyFormatter.prototype.parse = function (str) {
var index = str.indexOf(": ");
if (index >= 0) {
return +str.substr(index + 2);
} else {
return +str;
}
};
MyFormatter.prototype.toJSON = function () {
return {
typeName: this.typeName,
formatter: this.formatter
};
};
MyFormatter.prototype.fromJSON = function (settings) {
if (settings) {
this.formatter = settings.formatter;
}
};
var formatter = new MyFormatter("red;green");
formatter.format(12345); // "PositiveOrZero: 12345"
formatter.parse("PositiveOrZero: 12345"); // 12345
名前 | 型 | 説明 |
---|---|---|
settings |
Object |
逆シリアル化されたカスタムフォーマッターのデータ。 |
void
▸ parse(str
): Object
指定したテキストを解析します。この関数は上書きする必要があります。
実例
// 次のサンプルコードは、カスタムフォーマッターを作成します。
function CustomFormatterTest() {
}
CustomFormatterTest.prototype = new GC.Spread.Formatter.FormatterBase();
CustomFormatterTest.prototype.format = function (obj, options) {
\xa0 \xa0 //オブジェクトが色文字列の場合、exp: red、blue。テキストはオブジェクトの色で描画されます。
\xa0 \xa0 if (obj) {
\xa0 \xa0 \xa0 \xa0 options.conditionalForeColor = obj.toString()
\xa0 \xa0 \xa0 \xa0 return "My format result : " + obj.toString();
\xa0 \xa0 }
\xa0 \xa0 return "";
};
CustomFormatterTest.prototype.parse = function (str) {
\xa0 \xa0 if (!str) {
\xa0 \xa0 \xa0 \xa0 return "";
\xa0 \xa0 }
\xa0 \xa0 return str;
}
var sheet = spread.getActiveSheet();
sheet.getCell(1, 0).formatter(new CustomFormatterTest());
sheet.getCell(1, 0).value("red");
名前 | 型 |
---|---|
str |
string |
Object
解析されたオブジェクト。
▸ toJSON(): Object
オブジェクト状態をJSON文字列に保存します。
実例
// 次のサンプルコードは、カスタムフォーマッターを作成します。
function MyFormatter(format, cultureName) {
GC.Spread.Formatter.FormatterBase.apply(this, arguments);
this.typeName = "MyFormatter";
this.formatter = format;
}
MyFormatter.prototype = new GC.Spread.Formatter.FormatterBase();
MyFormatter.prototype.format = function (obj, options) {
if (typeof obj === "number") {
var colors = this.formatter.split(";");
if (obj >= 0) {
options && options.conditionalForeColor = colors[0];
return "PositiveOrZero: " + obj;
} else {
options && options.conditionalForeColor = colors[1];
return "Negative: " + obj;
}
}
return obj ? obj.toString() : "";
};
MyFormatter.prototype.parse = function (str) {
var index = str.indexOf(": ");
if (index >= 0) {
return +str.substr(index + 2);
} else {
return +str;
}
};
MyFormatter.prototype.toJSON = function () {
return {
typeName: this.typeName,
formatter: this.formatter
};
};
MyFormatter.prototype.fromJSON = function (settings) {
if (settings) {
this.formatter = settings.formatter;
}
};
var formatter = new MyFormatter("red;green");
formatter.format(12345); // "PositiveOrZero: 12345"
formatter.parse("PositiveOrZero: 12345"); // 12345
Object
カスタムフォーマッターのデータ。