LayoutId Property (DashboardLayout)
In This Topic
Gets or sets the id of the layout applied
Syntax
'Declaration
<JsonAttribute(True,
1,
"layout")>
<JsonConverterAttribute(C1.Web.Mvc.Serialization.ServiceConverter)>
Public Property LayoutId As System.String
'Usage
Dim instance As DashboardLayout
Dim value As System.String
instance.LayoutId = value
value = instance.LayoutId
[Json(true,
1,
"layout")]
[JsonConverter(C1.Web.Mvc.Serialization.ServiceConverter)]
public System.string LayoutId {get; set;}
public read-write property LayoutId: System.String;
JsonAttribute(1,
"layout")
JsonConverterAttribute(C1.Web.Mvc.Serialization.ServiceConverter)
public function get,set LayoutId : System.String
[Json(true,
1,
"layout")]
[JsonConverter(C1.Web.Mvc.Serialization.ServiceConverter)]
public: __property System.string* get_LayoutId();
public: __property void set_LayoutId(
System.string* value
);
[Json(true,
1,
"layout")]
[JsonConverter(C1.Web.Mvc.Serialization.ServiceConverter)]
public:
property System.String^ LayoutId {
System.String^ get();
void set ( System.String^ value);
}
See Also