AreaCorrectionDef関数
指定した補正エリアが設定されているかを返します。
書式
AreaCorrectionDef(エリア番号)
パラメーター
- エリア番号
- エリア番号(1~8の整数)を式または数値で指定します。
戻り値
補正エリアが設定されている場合は "True"、それ以外は "False"を返します。
参照
AreaCorrectionSet, AreaCorrectionClr, AreaCorrectionInv, AreaCorrectionOffset関数
AreaCorrectionDef関数使用例
Function DisplayAreaCorrectionDef(areaNum As Integer)
If AreaCorrectionDef(areaNum) = False Then
Print "Area", areaNum, " is not defined"
Else
Print "Area Definition:"
AreaCorrectionSet areaNum
EndIf
Fend