The current layer name for CAD in. Net

Source: Internet
Author: User

<summary>
Get the current layer name
</summary>
<param name= "DB" > Database objects </param>
<returns></returns>
public static string Getcurrentlayer (this Database db)
{
Database db = Hostapplicationservices.workingdatabase;
using (Transaction trans = db). Transactionmanager.starttransaction ())
{
Gets the layer name of all layers in the current drawing that are colored red
var Currentlayer = (from the layer in db. Getalllayers ()
The where layer. Id==db. Clayer
Select Layer. Name). ToList ();
return currentlayer[0];
Trans.commit ();
}
}

Above this method is more troublesome, can do according to the following method:

<summary>
Get the current layer name
</summary>
<param name= "DB" > Database objects </param>
<returns></returns>
public static string Getcurrentlayer (this Database db)
{
using (Transaction trans = db). Transactionmanager.starttransaction ())
{
Layertablerecord ltr = (layertablerecord) db. Clayer.getobject (Openmode.forread);
return LTR. Name;
Trans.commit ();
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.