Help me create property group

  • Thread starter Thread starter George Labljuk
  • Start date Start date
G

George Labljuk

Sample: Property box
How to create property like standart PROPERTY + Size xxx,
yyy
which groups two or more simple property after
click +

- Size xxx, yyy

Height xxx

Width yyy
 
don't know if i understand what you're wanting...

structure Box
dim height as single
dim width as single
end structure

private myBox as Box

property Box() as Box
get
return myBox
end get
set (value)
myBox .height = value.height
myBox .width = value.width
end set
end property

something like that?
 
Back
Top