0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AutoCad.NET Intersect 列挙型

Last updated at Posted at 2019-10-09

#クラス階層
Autodesk.AutoCAD.DatabaseServices.Intersect Enumeration

#定義

[Wrapper("AcDb::Intersect")]
public enum Intersect {
    OnBothOperands, // 0
    ExtendThis,     // 1
    ExtendArgument, // 2
    ExtendBoth      // 3
}

####ObjectARX 定義

// AcDb::Intersect Enumeration
enum Intersect {
    kOnBothOperands = 0,
    kExtendThis = 1,
    kExtendArg = 2,
    kExtendBoth = 3
};

#説明

定 義 名 説 明
OnBothOperands 両方の図形の延長線上の交点は含めない(実際の交点のみ含める)
ExtendThis この図形の延長線上の交点も含める
ExtendArgument 引数図形の延長線上の交点も含める
ExtendBoth 両方の図形の延長線上の交点も含める
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?