Questions tagged [getproperties]
49 questions
0
votes
1 answer
GetValue from list of GetProperties without an instantiated object using reflection
public class SomeClass
{
public IBy Some1{ get { return By.CssSelector("span[id$=spanEarth]"); } }
public IBy Some2 { get { return By.CssSelector("span[id$=spanWorm]"); } }
public IBy Some3 { get { return…

Duckies
- 15
- 5
-1
votes
1 answer
GetType.GetProperties for PictureBox
I am trying to run the code,in windows form using vb.net where I have multiple pictureboxes with properties like backgroudimage and location.
So I want to eliminate these repeated initilisations,and hence I am trying to initialise all the controls…

Sindhu Halesh
- 1
- 1
-2
votes
1 answer
How to get all or specific properties of a user from a database?
I'm new to grails and I would like to know how to get all the properties of a login user in an application. I've used MYSQL db to store its information such as username, passowrd, address, etc. I would like to know how to get the specific value of…

Mclaren Veyron
- 15
- 1
-3
votes
1 answer
How can I get the methods of a class that return void?
I need to get the methods with return-type void, something similar to this:
Constructor.
Property.
How can i do a similar thing which tells me the methods whose return-type is void?

John Stevenin
- 11
- 4