IsVisibleLayerByID

<< Click to Display Table of Contents >>

Navigation:  MyCAD > Methods >

IsVisibleLayerByID

public Boolean IsVisibleLayerByID(Int32 layerId)

 

Description:

 Is the layer is visible or not.

 

Parameter:

 layerId: Layer id

 

Return value:

 true: Visible

 false: Not visible

 

Example:

 private void button1_Click(object sender, System.EventArgs e)

 {

         myCAD1.IsVisibleLayerByID(0);

 }