1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="PanelStyle" FullName="System.Web.UI.WebControls.PanelStyle">
<TypeSignature Language="C#" Value="public class PanelStyle : System.Web.UI.WebControls.Style" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Web.UI.WebControls.Style</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.UI.WebControls.PanelStyle" /> class is used to represent the style settings for a panel control. It encapsulates the properties that control the appearance of a panel and can be applied to multiple panel controls to provide a common appearance.</para>
<para>You can specify an image to display in the background of the panel by setting the <see cref="P:System.Web.UI.WebControls.PanelStyle.BackImageUrl" /> property. The horizontal alignment of the contents of the panel is indicated by the <see cref="P:System.Web.UI.WebControls.PanelStyle.HorizontalAlign" /> property. The direction of controls that contain text within the panel control can be specified by setting the <see cref="P:System.Web.UI.WebControls.PanelStyle.Direction" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the style for a <see cref="T:System.Web.UI.WebControls.Panel" /> control.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public PanelStyle (System.Web.UI.StateBag bag);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="bag" Type="System.Web.UI.StateBag" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> class.</para>
</summary>
<param name="bag">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.StateBag" /> object that represents the state bag in which to store style information.</param>
</Docs>
</Member>
<Member MemberName="BackImageUrl">
<MemberSignature Language="C#" Value="public virtual string BackImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.PanelStyle.BackImageUrl" /> property specifies the URL of the background image for the panel control. For this property to work, an image file must exist at the specified location. If the specified image file is not accessible, then the panel control is displayed without a background image.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the background image for the panel control.</para>
</summary>
</Docs>
</Member>
<Member MemberName="CopyFrom">
<MemberSignature Language="C#" Value="public override void CopyFrom (System.Web.UI.WebControls.Style s);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="s" Type="System.Web.UI.WebControls.Style" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>You can use the <see cref="M:System.Web.UI.WebControls.PanelStyle.CopyFrom(System.Web.UI.WebControls.Style)" /> method to duplicate the style settings of the specified <see cref="T:System.Web.UI.WebControls.Style" /> object for the current instance of the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> class.</para>
<para>The <see cref="M:System.Web.UI.WebControls.PanelStyle.CopyFrom(System.Web.UI.WebControls.Style)" /> method copies non-blank elements from the specified <see cref="T:System.Web.UI.WebControls.Style" /> object, <paramref name="s" />. Any element that is defined in <paramref name="s" /> replaces any element that is defined in the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> object. To replace only those style settings left blank in the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> object, use the <see cref="M:System.Web.UI.WebControls.PanelStyle.MergeWith(System.Web.UI.WebControls.Style)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Duplicates the style properties of the specified <see cref="T:System.Web.UI.WebControls.Style" /> object for the current instance of the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> class.</para>
</summary>
<param name="s">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.Style" /> object that represents the style settings to copy.</param>
</Docs>
</Member>
<Member MemberName="Direction">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ContentDirection Direction { set; get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ContentDirection</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.PanelStyle.Direction" /> property specifies the direction in which to display controls that include text in a panel control.</para>
<para>The <see cref="P:System.Web.UI.WebControls.PanelStyle.Direction" /> property is set using one of the <see cref="T:System.Web.UI.WebControls.ContentDirection" /> values. The following table lists the possible values.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Value</para>
</term>
<description>
<para>Description</para>
</description>
</item>
</listheader>
<item>
<term>
<para>NotSet</para>
</term>
<description>
<para>The content direction is not set.</para>
</description>
</item>
<item>
<term>
<para>LeftToRight</para>
</term>
<description>
<para>Child controls that include text are displayed from left to right.</para>
</description>
</item>
<item>
<term>
<para>RightToLeft</para>
</term>
<description>
<para>Child controls that include text are displayed from right to left.</para>
</description>
</item>
</list>
<para>If you specify <see cref="F:System.Web.UI.WebControls.ContentDirection.LeftToRight" />, child controls that include text display from left to right. If you specify <see cref="F:System.Web.UI.WebControls.ContentDirection.RightToLeft" />, child controls that include text display right to left. Use <see cref="F:System.Web.UI.WebControls.ContentDirection.RightToLeft" /> to display text for languages that are written from right to left, such as Arabic or Hebrew.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the direction in which to display controls that include text in a panel control.</para>
</summary>
</Docs>
</Member>
<Member MemberName="HorizontalAlign">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.HorizontalAlign HorizontalAlign { set; get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.HorizontalAlign</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.PanelStyle.HorizontalAlign" /> property specifies the horizontal alignment of the contents within a panel control.</para>
<para>The <see cref="P:System.Web.UI.WebControls.PanelStyle.HorizontalAlign" /> property is set using one of the <see cref="T:System.Web.UI.WebControls.HorizontalAlign" /> enumeration values. The following table lists the possible values.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Value</para>
</term>
<description>
<para>Description</para>
</description>
</item>
</listheader>
<item>
<term>
<para>NotSet</para>
</term>
<description>
<para>The horizontal alignment is not set.</para>
</description>
</item>
<item>
<term>
<para>Left</para>
</term>
<description>
<para>The contents of the panel are left-aligned.</para>
</description>
</item>
<item>
<term>
<para>Center</para>
</term>
<description>
<para>The contents of the panel are centered.</para>
</description>
</item>
<item>
<term>
<para>Right</para>
</term>
<description>
<para>The contents of the panel are right-aligned.</para>
</description>
</item>
</list>
<block subset="none" type="note">
<para>. If the <see cref="P:System.Web.UI.WebControls.PanelStyle.HorizontalAlign" /> property is set to <see cref="F:System.Web.UI.WebControls.HorizontalAlign.NotSet" /> but the property is set in the control that contains the panel control, the setting is inherited from the containing control.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the horizontal alignment of the contents within a panel control.</para>
</summary>
</Docs>
</Member>
<Member MemberName="MergeWith">
<MemberSignature Language="C#" Value="public override void MergeWith (System.Web.UI.WebControls.Style s);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="s" Type="System.Web.UI.WebControls.Style" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>You can use the <see cref="M:System.Web.UI.WebControls.PanelStyle.MergeWith(System.Web.UI.WebControls.Style)" /> method to combine the style settings of the specified <see cref="T:System.Web.UI.WebControls.Style" /> object with the current instance of the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> class. </para>
<para>The <see cref="M:System.Web.UI.WebControls.PanelStyle.MergeWith(System.Web.UI.WebControls.Style)" /> method copies non-blank elements from the specified <see cref="T:System.Web.UI.WebControls.Style" /> object, <paramref name="s" />, but does not replace any existing style settings in the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> object. To replace the style settings in the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> object with the style settings in <paramref name="s" />, use the <see cref="M:System.Web.UI.WebControls.PanelStyle.CopyFrom(System.Web.UI.WebControls.Style)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Combines the style settings of the specified <see cref="T:System.Web.UI.WebControls.Style" /> object with the current instance of the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> class.</para>
</summary>
<param name="s">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.Style" /> object that represents the style settings to combine with the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> object.</param>
</Docs>
</Member>
<Member MemberName="Reset">
<MemberSignature Language="C#" Value="public override void Reset ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>You can use this method to remove any defined style settings from the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Removes any defined style settings from the <see cref="T:System.Web.UI.WebControls.PanelStyle" /> class.</para>
</summary>
</Docs>
</Member>
<Member MemberName="ScrollBars">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ScrollBars ScrollBars { set; get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ScrollBars</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.PanelStyle.ScrollBars" /> property specifies the visibility and position of scroll bars in a panel control. </para>
<para>The <see cref="P:System.Web.UI.WebControls.PanelStyle.ScrollBars" /> property is set using one of the <see cref="T:System.Web.UI.WebControls.ScrollBars" /> enumeration values. The following table lists the possible values.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Value</para>
</term>
<description>
<para>Description</para>
</description>
</item>
</listheader>
<item>
<term>
<para>None</para>
</term>
<description>
<para>No scroll bars are shown.</para>
</description>
</item>
<item>
<term>
<para>Horizontal</para>
</term>
<description>
<para>Only a horizontal scroll bar is shown.</para>
</description>
</item>
<item>
<term>
<para>Vertical</para>
</term>
<description>
<para>Only a vertical scroll bar is shown.</para>
</description>
</item>
<item>
<term>
<para>Both</para>
</term>
<description>
<para>Both horizontal and vertical scroll bars are shown.</para>
</description>
</item>
<item>
<term>
<para>Auto</para>
</term>
<description>
<para>If necessary, horizontal, vertical, or both scroll bars are shown. Otherwise, no scroll bars are shown.</para>
</description>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the visibility and position of scroll bars in a panel control.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Wrap">
<MemberSignature Language="C#" Value="public virtual bool Wrap { set; get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.PanelStyle.Wrap" /> property indicates whether the content wraps within the panel. When the <see cref="P:System.Web.UI.WebControls.PanelStyle.Wrap" /> property is set to false and the <see cref="P:System.Web.UI.WebControls.PanelStyle.ScrollBars" /> property is set to <see cref="F:System.Web.UI.WebControls.ScrollBars.Auto" />, if the content of the panel is longer than what will fit in the panel, the content of the panel will appear on one line with a horizontal scroll bar. When the <see cref="P:System.Web.UI.WebControls.PanelStyle.Wrap" /> property is set to false and the <see cref="P:System.Web.UI.WebControls.PanelStyle.ScrollBars" /> property is set to <see cref="F:System.Web.UI.WebControls.ScrollBars.None" />, the panel will extend and if necessary the Web page will have a horizontal scroll bar.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value indicating whether the content wraps within the panel.</para>
</summary>
</Docs>
</Member>
</Members>
</Type>
|