Using Block class on viewportlayout in devDept.EyeshotBlocks and yields in Ruby“Converting” a function pointer to a block in objective-CConfuse about css bfc(Block formatting contexts)using c# code blocks in aspx page - make variables available between blocksMagento Block Paypal Rewritehow to create own simulink block ?Inserting existing block with predefined attributesBlocks and objects with Strong Reference Cycle?Pyomo Blocks: indexed vs not-indexed blocks on time-dependent problemsRGB Value of Entity of DWG File

Microchip documentation does not label CAN buss pins on micro controller pinout diagram

What (the heck) is a Super Worm Equinox Moon?

How to make money from a browser who sees 5 seconds into the future of any web page?

Why is it that I can sometimes guess the next note?

Review your own paper in Mathematics

How can ping know if my host is down

What kind of floor tile is this?

"It doesn't matter" or "it won't matter"?

Is it allowed to activate the ability of multiple planeswalkers in a single turn?

Mimic lecturing on blackboard, facing audience

Multiplicative persistence

Why is the "ls" command showing permissions of files in a FAT32 partition?

What is the difference between lands and mana?

What's the name of the logical fallacy where a debater extends a statement far beyond the original statement to make it true?

Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?

Why does Carol not get rid of the Kree symbol on her suit when she changes its colours?

Can a stoichiometric mixture of oxygen and methane exist as a liquid at standard pressure and some (low) temperature?

Does Doodling or Improvising on the Piano Have Any Benefits?

What is going on with gets(stdin) on the site coderbyte?

Biological Blimps: Propulsion

Why is the Sun approximated as a black body at ~ 5800 K?

Is there a RAID 0 Equivalent for RAM?

How do I fix the group tension caused by my character stealing and possibly killing without provocation?

Why does the Sun have different day lengths, but not the gas giants?



Using Block class on viewportlayout in devDept.Eyeshot


Blocks and yields in Ruby“Converting” a function pointer to a block in objective-CConfuse about css bfc(Block formatting contexts)using c# code blocks in aspx page - make variables available between blocksMagento Block Paypal Rewritehow to create own simulink block ?Inserting existing block with predefined attributesBlocks and objects with Strong Reference Cycle?Pyomo Blocks: indexed vs not-indexed blocks on time-dependent problemsRGB Value of Entity of DWG File













0















I loaded a cadfile in which a lot of lines are drawn. I want to make a rectangle region, using 4 vertices(X, Y Coordinate value) so that I can click the region not just one point.



I found Block class in devDept.Eyshot but I don't know how to use it. Please give any ideas or c# code example for me.










share|improve this question









New contributor




Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • I removed the unnecessary list formatting so your question is easier to read.

    – James Coyle
    14 hours ago















0















I loaded a cadfile in which a lot of lines are drawn. I want to make a rectangle region, using 4 vertices(X, Y Coordinate value) so that I can click the region not just one point.



I found Block class in devDept.Eyshot but I don't know how to use it. Please give any ideas or c# code example for me.










share|improve this question









New contributor




Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • I removed the unnecessary list formatting so your question is easier to read.

    – James Coyle
    14 hours ago













0












0








0








I loaded a cadfile in which a lot of lines are drawn. I want to make a rectangle region, using 4 vertices(X, Y Coordinate value) so that I can click the region not just one point.



I found Block class in devDept.Eyshot but I don't know how to use it. Please give any ideas or c# code example for me.










share|improve this question









New contributor




Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I loaded a cadfile in which a lot of lines are drawn. I want to make a rectangle region, using 4 vertices(X, Y Coordinate value) so that I can click the region not just one point.



I found Block class in devDept.Eyshot but I don't know how to use it. Please give any ideas or c# code example for me.







range block eyeshot






share|improve this question









New contributor




Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 14 hours ago









James Coyle

5,27311537




5,27311537






New contributor




Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 18 hours ago









Donuk KimDonuk Kim

1




1




New contributor




Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Donuk Kim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • I removed the unnecessary list formatting so your question is easier to read.

    – James Coyle
    14 hours ago

















  • I removed the unnecessary list formatting so your question is easier to read.

    – James Coyle
    14 hours ago
















I removed the unnecessary list formatting so your question is easier to read.

– James Coyle
14 hours ago





I removed the unnecessary list formatting so your question is easier to read.

– James Coyle
14 hours ago












1 Answer
1






active

oldest

votes


















0














You don't need block to do that. You used the correct word and that is Region. A Region is a visual entity that has many vertices. It's technically a polygon. If you want you can use the simple method :



var width = 10d;
var height = 10d;
var region = devDept.Eyeshot.Entities.Region.CreateRectangle(width, height, true);
viewport.Entities.Add(region);


When you use the method to get the entities under mouse, the whole surface of the region is taken into account. It works perfectly






share|improve this answer























  • Thank you for kind answering:) But I want to click not just surface of rectangle but whole region of it. So If I click any point in the rectangle, I want to make an event. Can I do that using [Region] only ? I thought I had to use [Block] class.

    – Donuk Kim
    3 hours ago










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






Donuk Kim is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55279926%2fusing-block-class-on-viewportlayout-in-devdept-eyeshot%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














You don't need block to do that. You used the correct word and that is Region. A Region is a visual entity that has many vertices. It's technically a polygon. If you want you can use the simple method :



var width = 10d;
var height = 10d;
var region = devDept.Eyeshot.Entities.Region.CreateRectangle(width, height, true);
viewport.Entities.Add(region);


When you use the method to get the entities under mouse, the whole surface of the region is taken into account. It works perfectly






share|improve this answer























  • Thank you for kind answering:) But I want to click not just surface of rectangle but whole region of it. So If I click any point in the rectangle, I want to make an event. Can I do that using [Region] only ? I thought I had to use [Block] class.

    – Donuk Kim
    3 hours ago















0














You don't need block to do that. You used the correct word and that is Region. A Region is a visual entity that has many vertices. It's technically a polygon. If you want you can use the simple method :



var width = 10d;
var height = 10d;
var region = devDept.Eyeshot.Entities.Region.CreateRectangle(width, height, true);
viewport.Entities.Add(region);


When you use the method to get the entities under mouse, the whole surface of the region is taken into account. It works perfectly






share|improve this answer























  • Thank you for kind answering:) But I want to click not just surface of rectangle but whole region of it. So If I click any point in the rectangle, I want to make an event. Can I do that using [Region] only ? I thought I had to use [Block] class.

    – Donuk Kim
    3 hours ago













0












0








0







You don't need block to do that. You used the correct word and that is Region. A Region is a visual entity that has many vertices. It's technically a polygon. If you want you can use the simple method :



var width = 10d;
var height = 10d;
var region = devDept.Eyeshot.Entities.Region.CreateRectangle(width, height, true);
viewport.Entities.Add(region);


When you use the method to get the entities under mouse, the whole surface of the region is taken into account. It works perfectly






share|improve this answer













You don't need block to do that. You used the correct word and that is Region. A Region is a visual entity that has many vertices. It's technically a polygon. If you want you can use the simple method :



var width = 10d;
var height = 10d;
var region = devDept.Eyeshot.Entities.Region.CreateRectangle(width, height, true);
viewport.Entities.Add(region);


When you use the method to get the entities under mouse, the whole surface of the region is taken into account. It works perfectly







share|improve this answer












share|improve this answer



share|improve this answer










answered 11 hours ago









FranckFranck

2,62011538




2,62011538












  • Thank you for kind answering:) But I want to click not just surface of rectangle but whole region of it. So If I click any point in the rectangle, I want to make an event. Can I do that using [Region] only ? I thought I had to use [Block] class.

    – Donuk Kim
    3 hours ago

















  • Thank you for kind answering:) But I want to click not just surface of rectangle but whole region of it. So If I click any point in the rectangle, I want to make an event. Can I do that using [Region] only ? I thought I had to use [Block] class.

    – Donuk Kim
    3 hours ago
















Thank you for kind answering:) But I want to click not just surface of rectangle but whole region of it. So If I click any point in the rectangle, I want to make an event. Can I do that using [Region] only ? I thought I had to use [Block] class.

– Donuk Kim
3 hours ago





Thank you for kind answering:) But I want to click not just surface of rectangle but whole region of it. So If I click any point in the rectangle, I want to make an event. Can I do that using [Region] only ? I thought I had to use [Block] class.

– Donuk Kim
3 hours ago












Donuk Kim is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















Donuk Kim is a new contributor. Be nice, and check out our Code of Conduct.












Donuk Kim is a new contributor. Be nice, and check out our Code of Conduct.











Donuk Kim is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55279926%2fusing-block-class-on-viewportlayout-in-devdept-eyeshot%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript