DesignerAutoFormatCollection.Add(DesignerAutoFormat) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した DesignerAutoFormat オブジェクトをコレクションの末尾に追加します。
public:
int Add(System::Web::UI::Design::DesignerAutoFormat ^ format);
public int Add (System.Web.UI.Design.DesignerAutoFormat format);
member this.Add : System.Web.UI.Design.DesignerAutoFormat -> int
Public Function Add (format As DesignerAutoFormat) As Integer
パラメーター
- format
- DesignerAutoFormat
DesignerAutoFormat のインスタンス。
戻り値
コレクションに追加された書式のインデックス位置。
例
次のコード例は、カスタム デザイナーの プロパティにオブジェクトをAutoFormats
作成して追加DesignerAutoFormatする方法を示しています。
// The collection of AutoFormat objects for the IndentLabel object
public override DesignerAutoFormatCollection AutoFormats
{
get
{
if (_autoFormats == null)
{
// Create the collection
_autoFormats = new DesignerAutoFormatCollection();
// Create and add each AutoFormat object
_autoFormats.Add(new IndentLabelAutoFormat("MyClassic"));
_autoFormats.Add(new IndentLabelAutoFormat("MyBright"));
_autoFormats.Add(new IndentLabelAutoFormat("Default"));
}
return _autoFormats;
}
}
' The collection of AutoFormat objects for the IndentLabel object
Public Overrides ReadOnly Property AutoFormats() As DesignerAutoFormatCollection
Get
If _autoFormats Is Nothing Then
' Create the collection
_autoFormats = New DesignerAutoFormatCollection()
' Create and add each AutoFormat object
_autoFormats.Add(New IndentLabelAutoFormat("MyClassic"))
_autoFormats.Add(New IndentLabelAutoFormat("MyBright"))
_autoFormats.Add(New IndentLabelAutoFormat("Default"))
End If
Return _autoFormats
End Get
End Property
注釈
メソッドは Add 、指定した DesignerAutoFormat オブジェクトをコレクションの末尾に追加します。 特定の DesignerAutoFormat インデックス位置にあるオブジェクトをコレクションに追加するには、 メソッドを使用します Insert 。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET