Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 949 Bytes

File metadata and controls

51 lines (43 loc) · 949 Bytes

RemoveGeoref

Description

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

Parameters

Name Type Description
hLayer HANDLE Pass NIL for Vectorscript and None for Python if you want to manage the document.

Examples

==== VectorScript ====

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);

==== Python ====

vs.RemoveGeoref(None)
isGeoref	= vs.IsGeoreferenced(None)
if isGeoref:
	vs.AlrtDialog('The file is georeferenced.')
else:
	vs.AlrtDialog('The file is not georeferenced.')

Version

Availability: from Vectorworks 2023.3

Category

  • GIS