I do not understand why there is Control.padding.all which is int and according to hint there is set as well as get but I cannot set it (Control.Padding.All=5)? I would be grateful for explanation. Thanks!

link|improve this question

77% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Here is a simple Implementation of this

public class ARAControl
{
    public ARAPadding Padding { get; set; }
}
public struct ARAPadding

{
    public int All { get; set; }
}

And if you use this you probably get this error

        ARAControl control = new ARAControl();
        control.Padding.All = 10;

It hapens because structure is a value type. By setting this property you first call get Method. Property Get will return a copy of Padding so it is a value type and C# will detect out mistake and prevent compiling

link|improve this answer
I've just submitted a post about this issue in my blog: ahmadreza.com/blog/post/… – Ahmadreza Dec 10 '09 at 21:34
feedback

Control.Margin = new Padding(5)

link|improve this answer
Yeah I know how to get it work..I just do not understand why there is Padding.all or left or whatever...but cannot be set as a int. – Petr Nov 26 '09 at 8:19
Nor I! I too would be greteful for an answer as to why this int may not be assigned. – ChrisJJ Sep 21 '11 at 17:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.