524 |
def LayerTransparentFill(self): |
def LayerTransparentFill(self): |
525 |
layer = self.current_layer() |
layer = self.current_layer() |
526 |
if layer is not None: |
if layer is not None: |
527 |
layer.GetClassification().SetDefaultFill(Color.None) |
layer.GetClassification().SetDefaultFill(Color.Transparent) |
528 |
|
|
529 |
def LayerOutlineColor(self): |
def LayerOutlineColor(self): |
530 |
layer = self.current_layer() |
layer = self.current_layer() |
536 |
def LayerNoOutline(self): |
def LayerNoOutline(self): |
537 |
layer = self.current_layer() |
layer = self.current_layer() |
538 |
if layer is not None: |
if layer is not None: |
539 |
layer.GetClassification().SetDefaultLineColor(Color.None) |
layer.GetClassification().SetDefaultLineColor(Color.Transparent) |
540 |
|
|
541 |
def HideLayer(self): |
def HideLayer(self): |
542 |
layer = self.current_layer() |
layer = self.current_layer() |