[]
Ƭ GetFileFunctionType: (filePath
: string
) => File
| Blob
▸ (filePath
): File
| Blob
説明
パスでファイルを取得します。
名前 | 型 | 説明 |
---|---|---|
filePath |
string |
ファイルパス。 |
File
| Blob
Ƭ GetPartialValuesErrorCallbackType: (errorMsg
: string
) => void
▸ (errorMsg
): void
説明
部分的な値を取得するエラーコールバック。
名前 | 型 | 説明 |
---|---|---|
errorMsg |
string |
エラーメッセージ。 |
void
Ƭ GetPartialValuesSuccessCallbackType: (externalValues
: ExternalPartialValues
) => void
▸ (externalValues
): void
説明
部分的な値を取得する成功コールバック。
名前 | 型 | 説明 |
---|---|---|
externalValues |
ExternalPartialValues |
外部値リスト。 |
void
▸ getPartialValues(refList
, getFile
, getPartialValuesSuccessCallback
, getPartialValuesErrorCallback
): void
特定の参照パスリストの値をファイルから直接取得します。
static
実例
function getFile (path) {
// パスでファイルを返します。
}
let refList = spread.getExternalReferences(true);
GC.Spread.Sheets.IO.getPartialValues(refList, getFile, (externalValues) => {
// successCallback
spread.updateExternalReference(externalValues);
}, (errorMsg) => {
// errorCallback
console.log(errorMsg);
});
名前 | 型 | 説明 |
---|---|---|
refList |
IExternalReference [] |
外部参照の配列。 |
getFile |
GetFileFunctionType |
指定されたファイル パスによってファイルまたは BLOB を返す関数。 |
getPartialValuesSuccessCallback |
GetPartialValuesSuccessCallbackType |
値の取得に成功したときに呼び出されるsuccessCallback関数。 |
getPartialValuesErrorCallback |
GetPartialValuesErrorCallbackType |
値の取得に失敗したときに呼び出されるerrorCallback関数。 |
void
▸ registerMaxDigitWidth(fontFamily
, fontSize
, maxDigitWidth
): void
不明な最大桁幅情報をIOに登録します。
名前 | 型 | 説明 |
---|---|---|
fontFamily |
string |
デフォルトのフォントスタイルのフォントファミリ。 |
fontSize |
number |
デフォルトのフォントスタイルのフォントサイズ(ポイント単位)。 |
maxDigitWidth |
number |
デフォルトのフォントスタイルの最大桁幅。 |
void