Ejemplo n.º 1
0
 public ViewContent(Microsoft.Expression.DesignModel.ViewObjects.ViewContentType viewContentType, object content, bool isWidthUnknown, bool isHeightUnknown, bool isSizeFixed)
 {
     this.ViewContentType = viewContentType;
     this.Content         = content;
     this.IsWidthUnknown  = isWidthUnknown;
     this.IsHeightUnknown = isHeightUnknown;
     this.IsSizeFixed     = isSizeFixed;
 }
Ejemplo n.º 2
0
 public ViewContent(Microsoft.Expression.DesignModel.ViewObjects.ViewContentType viewContentType, object content, bool isWidthUnknown, bool isHeightUnknown) : this(viewContentType, content, isWidthUnknown, isHeightUnknown, false)
 {
 }