Remove the georeferencing settings for a given layer handle, or for the document if NIL is provided.
PROCEDURE RemoveGeoref(hLayer : HANDLE);def vs.RemoveGeoref(hLayer):
return None| Name | Type | Description |
|---|---|---|
| hLayer | HANDLE | Pass NIL for Vectorscript and None for Python if you want to manage the document. |
PROCEDURE Test;
var
isGeoref: BOOLEAN;
BEGIN
RemoveGeoref(NIL);
isGeoref := IsGeoreferenced(NIL);
if (isGeoref) then
AlrtDialog('The file is georeferenced.')
else
AlrtDialog('The file is not georeferenced.');
end;
run(Test);vs.RemoveGeoref(None)
isGeoref = vs.IsGeoreferenced(None)
if isGeoref:
vs.AlrtDialog('The file is georeferenced.')
else:
vs.AlrtDialog('The file is not georeferenced.')Availability: from Vectorworks 2023.3